fix leverage display
This commit is contained in:
@ -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
|
||||
)
|
||||
|
Reference in New Issue
Block a user