fixed dash

This commit is contained in:
Dobromir Popov
2025-05-25 11:01:28 +03:00
parent 3c23e4ec42
commit ed9df06855
2 changed files with 577 additions and 120 deletions

View File

@ -295,8 +295,8 @@ def run_web_dashboard():
if test_data is None or test_data.empty:
logger.warning("⚠️ No data available - starting dashboard with demo mode...")
else:
logger.info(" Data connection verified")
logger.info(f" Fetched {len(test_data)} candles for validation")
logger.info("[SUCCESS] Data connection verified")
logger.info(f"[SUCCESS] Fetched {len(test_data)} candles for validation")
# Initialize orchestrator with real data only
orchestrator = TradingOrchestrator(data_provider)
@ -305,8 +305,8 @@ def run_web_dashboard():
from web.dashboard import TradingDashboard
dashboard = TradingDashboard(data_provider, orchestrator)
logger.info("🎯 LAUNCHING DASHBOARD")
logger.info(f"🌐 Access at: http://127.0.0.1:8050")
logger.info("[LAUNCH] LAUNCHING DASHBOARD")
logger.info(f"[ACCESS] Access at: http://127.0.0.1:8050")
# Run the dashboard
dashboard.run(host='127.0.0.1', port=8050, debug=False)