dash closed trades history

This commit is contained in:
Dobromir Popov
2025-05-27 13:47:34 +03:00
parent cc20b6194a
commit 4567912186
12 changed files with 2388 additions and 430 deletions

View File

@ -29,6 +29,7 @@ from models import get_model_registry, ModelInterface, CNNModelInterface, RLAgen
from .extrema_trainer import ExtremaTrainer
from .trading_action import TradingAction
from .negative_case_trainer import NegativeCaseTrainer
from .trading_executor import TradingExecutor
logger = logging.getLogger(__name__)
@ -854,7 +855,7 @@ class EnhancedTradingOrchestrator:
if bb_upper > bb_lower:
bb_position = (current_price - bb_lower) / (bb_upper - bb_lower)
# Recent price change patterns
# Recent price change patterns
price_changes = recent_data['close'].pct_change().tail(5).tolist()
return {