enhanced
This commit is contained in:
@@ -21,7 +21,7 @@ sys.path.insert(0, str(project_root))
|
||||
from core.config import get_config, setup_logging
|
||||
from core.data_provider import DataProvider
|
||||
from core.enhanced_orchestrator import EnhancedTradingOrchestrator
|
||||
from web.scalping_dashboard import run_scalping_dashboard
|
||||
from web.scalping_dashboard import create_scalping_dashboard
|
||||
|
||||
# Setup logging
|
||||
setup_logging()
|
||||
@@ -106,7 +106,8 @@ def main():
|
||||
logger.info("🚫 ZERO SYNTHETIC DATA - REAL TRADING DECISIONS ONLY")
|
||||
|
||||
# Start the dashboard with real data only
|
||||
run_scalping_dashboard(data_provider, orchestrator)
|
||||
dashboard = create_scalping_dashboard(data_provider, orchestrator)
|
||||
dashboard.run(host='127.0.0.1', port=8051, debug=False)
|
||||
|
||||
except Exception as e:
|
||||
logger.error(f"❌ CRITICAL ERROR: {e}")
|
||||
|
||||
Reference in New Issue
Block a user