fix leverage display

This commit is contained in:
Dobromir Popov
2025-06-26 22:25:54 +03:00
parent e6cd98ff10
commit 18a6fb2fa8
5 changed files with 1360 additions and 148 deletions

View File

@ -622,7 +622,8 @@ class CleanTradingDashboard:
increasing_line_color='#26a69a',
decreasing_line_color='#ef5350',
increasing_fillcolor='#26a69a',
decreasing_fillcolor='#ef5350'
decreasing_fillcolor='#ef5350',
hoverinfo='skip' # Remove tooltips for optimization and speed
),
row=1, col=1
)
@ -642,7 +643,8 @@ class CleanTradingDashboard:
mode='lines',
name='1s Price',
line=dict(color='#ffa726', width=1),
showlegend=False
showlegend=False,
hoverinfo='skip' # Remove tooltips for optimization
),
row=2, col=1
)
@ -658,7 +660,8 @@ class CleanTradingDashboard:
y=df_main['volume'],
name='Volume',
marker_color='rgba(100,150,200,0.6)',
showlegend=False
showlegend=False,
hoverinfo='skip' # Remove tooltips for optimization
),
row=volume_row, col=1
)