stability fixes, lower updates

This commit is contained in:
Dobromir Popov
2025-07-26 22:32:45 +03:00
parent 9576c52039
commit 7c61c12b70
9 changed files with 1210 additions and 45 deletions

View File

@ -211,9 +211,10 @@ class TradingOrchestrator:
self.perfect_move_buffer: List[Any] = [] # Buffer for perfect move analysis
self.position_status: Dict[str, Any] = {} # Current positions
# Real-time processing
# Real-time processing with error handling
self.realtime_processing: bool = False
self.realtime_tasks: List[Any] = []
self.failed_tasks: List[Any] = [] # Track failed tasks for debugging
# Training tracking
self.last_trained_symbols: Dict[str, datetime] = {}