fix: Change TP1 from 1.1% to 1.45% (FIXED - Jan 3, 2026)

- Updated config/trading.ts defaults: takeProfit1Percent, minTp1Percent, maxTp1Percent all set to 1.45
- Updated .env: TAKE_PROFIT_1_PERCENT, MIN_TP1_PERCENT, MAX_TP1_PERCENT all set to 1.45
- Updated documentation: Exit strategy section reflects fixed 1.45% TP1 (no ATR variance)
- User requested fixed TP1 at 1.45% instead of ATR-based dynamic targets
- Container restarted to apply changes
This commit is contained in:
mindesbunister
2026-01-03 15:11:55 +01:00
parent 23db02de72
commit e1088b1218
3 changed files with 16 additions and 10 deletions

6
.env
View File

@@ -100,7 +100,7 @@ HARD_STOP_PERCENT=-2.5
# Take Profit 1: Close X% of position at this profit level (FALLBACK)
# Example: +0.8% on 10x = +8% account gain
TAKE_PROFIT_1_PERCENT=1.1
TAKE_PROFIT_1_PERCENT=1.45
# Take Profit 1 Size: What % of position to close at TP1
# 60 = close 60%, leave 40% for runner
@@ -135,8 +135,8 @@ ATR_MULTIPLIER_SL=3.0
# Safety bounds (prevent extreme values)
# TP1 bounds
MIN_TP1_PERCENT=1.1 # Clamp TP1 to requested 1.1%
MAX_TP1_PERCENT=1.1 # Clamp TP1 to requested 1.1%
MIN_TP1_PERCENT=1.45 # Clamp TP1 to requested 1.1%
MAX_TP1_PERCENT=1.45 # Clamp TP1 to requested 1.1%
# TP2 bounds
MIN_TP2_PERCENT=1