dash closed trades history
This commit is contained in:
@ -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 {
|
||||
|
Reference in New Issue
Block a user