misc
This commit is contained in:
@@ -160,7 +160,9 @@ def start_clean_dashboard_with_training():
|
||||
logger.info("Enhanced Trading Orchestrator created with COB integration")
|
||||
|
||||
# Create trading executor
|
||||
trading_executor = TradingExecutor()
|
||||
trading_executor = TradingExecutor(config_path="config.yaml")
|
||||
logger.info(f"Creating trading executor with {trading_executor.primary_name} configuration...")
|
||||
|
||||
|
||||
# Connect trading executor to orchestrator
|
||||
orchestrator.trading_executor = trading_executor
|
||||
@@ -170,11 +172,8 @@ def start_clean_dashboard_with_training():
|
||||
from web.clean_dashboard import create_clean_dashboard
|
||||
|
||||
# Create clean dashboard
|
||||
dashboard = create_clean_dashboard(
|
||||
data_provider=data_provider,
|
||||
orchestrator=orchestrator,
|
||||
trading_executor=trading_executor
|
||||
)
|
||||
logger.info("Creating clean dashboard...")
|
||||
dashboard = create_clean_dashboard(data_provider, orchestrator, trading_executor)
|
||||
logger.info("Clean Trading Dashboard created")
|
||||
|
||||
# Start training pipeline in background thread
|
||||
|
||||
Reference in New Issue
Block a user