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