fix: Remove 5-candle time exit rule for v11.2 strategy
- Removed TIME_EXIT_5_CANDLE logic from position-manager.ts - v11.2 backtest (+53.80%) didn't include this exit rule - Trades will now be allowed to reach TP1 (+1.1%) instead of early exit - Previous behavior: Exit after 25min if MFE < $30 (force-exited -0.20% trade) - New behavior: Let trades run to configured TP1/SL levels Rationale: The 5-candle rule was from an older Q>=95 strategy optimization. v11.2 indicator already filters to PF 2.617 profitable setups, additional time-based filtering was counter-productive and introduced untested behavior.
This commit is contained in:
4
.env
4
.env
@@ -104,7 +104,7 @@ TAKE_PROFIT_1_PERCENT=1.1
|
||||
|
||||
# Take Profit 1 Size: What % of position to close at TP1
|
||||
# 60 = close 60%, leave 40% for runner
|
||||
TAKE_PROFIT_1_SIZE_PERCENT=60
|
||||
TAKE_PROFIT_1_SIZE_PERCENT=100
|
||||
|
||||
# Take Profit 2: Trigger trailing stop at this profit level (FALLBACK)
|
||||
# Example: +1.8% on 10x = +18% account gain
|
||||
@@ -388,7 +388,7 @@ NEW_RELIC_LICENSE_KEY=
|
||||
# - TRADING_BOT_V4_MANUAL.md - Complete manual
|
||||
# - PHASE_2_COMPLETE_REPORT.md - Feature summary
|
||||
|
||||
USE_TRAILING_STOP=true
|
||||
USE_TRAILING_STOP=false
|
||||
TRAILING_STOP_PERCENT=0.5
|
||||
TRAILING_STOP_ACTIVATION=0.4
|
||||
MIN_SIGNAL_QUALITY_SCORE=95
|
||||
|
||||
Reference in New Issue
Block a user