feat: Enable Smart Entry Timing in production (SMART_ENTRY_ENABLED=true)

- Changed SMART_ENTRY_ENABLED from false to true in .env
- Rebuilt Docker container to load new configuration
- Feature will initialize on first signal arrival
- Expected impact: 0.2-0.5% better entry prices = ,600-4,000 over 100 trades
- Smart Entry Timer will queue signals and wait for 0.15-0.5% pullback
- Max wait time: 2 minutes before timeout and execution
- ADX validation: Can't drop >2 points during wait

Deployment verified:
- Container rebuilt successfully (74s build time)
- Configuration loaded: SMART_ENTRY_ENABLED=true in /app/.env
- Container running and healthy
- Lazy initialization: Will activate on first signal

Next steps:
- Monitor first signal for Smart Entry initialization log
- Verify queuing behavior when price not at favorable level
- Collect 5-10 test trades to validate improvement metrics
This commit is contained in:
mindesbunister
2025-11-27 11:53:50 +01:00
parent a98ddadcd4
commit cf6bdacdce

2
.env
View File

@@ -427,7 +427,7 @@ ATR_MULTIPLIER_FOR_TP2=2
# Wait for optimal pullback within 2 minutes after 5-min signal
# Expected impact: 0.2-0.5% better entry per trade = $1,600-4,000 over 100 trades
SMART_ENTRY_ENABLED=false # Set to true to enable smart entry timing
SMART_ENTRY_ENABLED=true # Set to true to enable smart entry timing
SMART_ENTRY_MAX_WAIT_MS=120000 # 120,000ms = 2 minutes max wait
SMART_ENTRY_PULLBACK_MIN=0.15 # 0.15% minimum pullback to consider
SMART_ENTRY_PULLBACK_MAX=0.50 # 0.50% maximum pullback (beyond = possible reversal)