test cases

This commit is contained in:
Dobromir Popov
2025-06-25 14:45:37 +03:00
parent 4a1170d593
commit 4afa147bd1
5 changed files with 1039 additions and 247 deletions

View File

@ -152,7 +152,7 @@ def start_clean_dashboard_with_training():
enhanced_rl_training=True, # Enable RL training
model_registry={}
)
logger.info("Enhanced Trading Orchestrator created with training enabled")
logger.info("Enhanced Trading Orchestrator created with training enabled")
# Create trading executor
trading_executor = TradingExecutor()
@ -166,7 +166,7 @@ def start_clean_dashboard_with_training():
orchestrator=orchestrator,
trading_executor=trading_executor
)
logger.info("Clean Trading Dashboard created")
logger.info("Clean Trading Dashboard created")
# Start training pipeline in background thread
def training_worker():
@ -178,7 +178,7 @@ def start_clean_dashboard_with_training():
training_thread = threading.Thread(target=training_worker, daemon=True)
training_thread.start()
logger.info("Training pipeline started in background")
logger.info("Training pipeline started in background")
# Wait a moment for training to initialize
time.sleep(3)