using new data probider and StandardizedCNN
This commit is contained in:
@ -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")
|
||||
|
||||
|
Reference in New Issue
Block a user