This commit is contained in:
Dobromir Popov
2025-05-25 12:18:40 +03:00
parent ed9df06855
commit 230b2c623a
8 changed files with 872 additions and 123 deletions

View File

@@ -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}")