logs optimized

This commit is contained in:
Ajasra
2025-06-12 13:27:30 +08:00
parent d5db9402e8
commit 77c6733d94
35 changed files with 54 additions and 54 deletions

View File

@@ -30,4 +30,20 @@ UI_TEXT = {
"cumulative_return_trace_name": "Cumulative Return",
"returns_trace_name": "Returns (%)",
"range_trace_name": "Range %"
}
DEFAULT_CHART_COLORS = {
'bullish': '#00C851', # Green for bullish candles
'bearish': '#FF4444', # Red for bearish candles
'sma': '#007bff', # Blue for SMA
'ema': '#ff6b35', # Orange for EMA
'bb_upper': '#6f42c1', # Purple for Bollinger upper
'bb_lower': '#6f42c1', # Purple for Bollinger lower
'bb_middle': '#6c757d', # Gray for Bollinger middle
'rsi': '#20c997', # Teal for RSI
'macd': '#fd7e14', # Orange for MACD
'macd_signal': '#e83e8c', # Pink for MACD signal
'volume': '#6c757d', # Gray for volume
'support': '#17a2b8', # Light blue for support
'resistance': '#dc3545' # Red for resistance
}