using new data probider and StandardizedCNN

This commit is contained in:
Dobromir Popov
2025-07-23 16:27:16 +03:00
parent 735ee255bc
commit 1be270cc5c
3 changed files with 15 additions and 6 deletions

View File

@ -148,15 +148,16 @@ def start_clean_dashboard_with_training():
# Get configuration
config = get_config()
# Initialize core components
from core.data_provider import DataProvider
# Initialize core components with standardized versions
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
data_provider = StandardizedDataProvider()
logger.info("StandardizedDataProvider created with BaseDataInput support")
# Create enhanced orchestrator with COB integration - stable and efficient
# Create enhanced orchestrator with standardized data provider
orchestrator = TradingOrchestrator(data_provider, enhanced_rl_training=True)
logger.info("Enhanced Trading Orchestrator created with COB integration")