wip COB data source - not ready

This commit is contained in:
Dobromir Popov
2025-08-08 00:49:13 +03:00
parent 0ce6e2691b
commit bd15bdc87d
7 changed files with 327 additions and 166 deletions

10
main.py
View File

@ -51,12 +51,12 @@ async def run_web_dashboard():
config = get_config()
# Initialize core components for streamlined pipeline
from core.data_provider import DataProvider
from core.standardized_data_provider import StandardizedDataProvider
from core.orchestrator import TradingOrchestrator
from core.trading_executor import TradingExecutor
# Create data provider
data_provider = DataProvider()
# Create standardized data provider (validated BaseDataInput, pivots, COB)
data_provider = StandardizedDataProvider()
# Start real-time streaming for BOM caching
try:
@ -153,13 +153,13 @@ def start_web_ui(port=8051):
# Import and create the Clean Trading Dashboard
from web.clean_dashboard import CleanTradingDashboard
from core.data_provider import DataProvider
from core.standardized_data_provider import StandardizedDataProvider
from core.orchestrator import TradingOrchestrator
from core.trading_executor import TradingExecutor
# Initialize components for the dashboard
config = get_config()
data_provider = DataProvider()
data_provider = StandardizedDataProvider()
# Start real-time streaming for BOM caching (non-blocking)
try: