added leverage, better training
This commit is contained in:
@ -2985,7 +2985,7 @@ class TradingDashboard:
|
||||
html.Div([
|
||||
html.H6([
|
||||
html.I(className="fas fa-brain me-2"),
|
||||
"Training Progress & COB $1 Buckets"
|
||||
"Models & Training Progress"
|
||||
], className="card-title mb-2"),
|
||||
html.Div(id="training-metrics", style={"height": "160px", "overflowY": "auto"})
|
||||
], className="card-body p-2")
|
||||
@ -9758,7 +9758,7 @@ class TradingDashboard:
|
||||
return self._create_empty_chart("Chart Error", "Chart temporarily unavailable")
|
||||
|
||||
def _create_training_metrics_cached(self):
|
||||
"""Enhanced training metrics with COB $1 buckets"""
|
||||
"""Enhanced training metrics"""
|
||||
try:
|
||||
content = []
|
||||
|
||||
@ -9769,9 +9769,9 @@ class TradingDashboard:
|
||||
content.append(html.P(f"Last Update: {datetime.now().strftime('%H:%M:%S')}",
|
||||
className="text-muted small"))
|
||||
|
||||
# COB $1 Buckets Section
|
||||
content.append(html.Hr())
|
||||
content.append(html.H6("COB $1 Buckets", className="text-info mb-2"))
|
||||
# # COB Buckets Section
|
||||
# content.append(html.Hr())
|
||||
# content.append(html.H6("COB $1 Buckets", className="text-info mb-2"))
|
||||
|
||||
# Get COB bucket data if available
|
||||
try:
|
||||
|
Reference in New Issue
Block a user