From 7cf00cf7cb99a17017a5b0cb8a2a662b5bb87ed4 Mon Sep 17 00:00:00 2001 From: mindesbunister Date: Wed, 19 Nov 2025 12:30:26 +0100 Subject: [PATCH] feat: Set runner SL to -0.55% after TP1 for retracement room MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed PROFIT_LOCK_AFTER_TP1_PERCENT from 0.3% to -0.55% Reasoning based on user's chart analysis: - Entry signals trigger on candle close = always entering at top - Price naturally retraces below entry (screenshots show -1% to -1.5%) - Old 0.3% profit lock would stop runner out on normal retracements - New -0.55% allows breathing room while TP1 profit already banked Risk/Reward: - 60% already closed at TP1 profit (guaranteed) - 40% runner can handle -0.55% pullback without stopping out - Worst case: -0.55% on 40% = -0.22% total position loss - Best case: Runner catches 38% MFE moves with ADX trailing stop Example (entry at $140): - TP1: $140.86 → 60% closed ✅ - Runner SL: $139.23 (-0.55%) - Allows pullback to $139.30-139.50 (typical retracement) - TP2 trigger: $141.72 → ADX trail activates - Captures big trend moves instead of premature runner stops --- .env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.env b/.env index 5260fe1..dfde566 100644 --- a/.env +++ b/.env @@ -151,7 +151,7 @@ EMERGENCY_STOP_PERCENT=-2 # Dynamic stop-loss adjustments # Move SL to breakeven when profit reaches this level -PROFIT_LOCK_AFTER_TP1_PERCENT=0.3 # Lock this % profit on remaining position after TP1 (was BREAKEVEN_TRIGGER_PERCENT) +PROFIT_LOCK_AFTER_TP1_PERCENT=-0.55 # Allow -0.55% drawdown on runner after TP1 (gives room for retracements while TP1 profit already banked) # Lock in profit when price reaches this level PROFIT_LOCK_TRIGGER_PERCENT=1