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

View File

@@ -154,7 +154,7 @@ export const DEFAULT_TRADING_CONFIG: TradingConfig = {
// Risk parameters (LEGACY FALLBACK - used when ATR unavailable)
stopLossPercent: -2.8, // Fallback: -2.8% if no ATR
takeProfit1Percent: 1.1, // Fallback: +1.1% if no ATR
takeProfit1Percent: 1.45, // Fallback: +1.45% if no ATR
takeProfit2Percent: 1.8, // Fallback: +1.8% if no ATR
emergencyStopPercent: -2.0, // Emergency hard stop (always active)
@@ -163,8 +163,8 @@ export const DEFAULT_TRADING_CONFIG: TradingConfig = {
atrMultiplierTp1: 2.0, // TP1 = ATR × 2.0 (Example: 0.45% ATR = 0.90% TP1)
atrMultiplierTp2: 4.0, // TP2 = ATR × 4.0 (Example: 0.45% ATR = 1.80% TP2)
atrMultiplierSl: 3.0, // SL = ATR × 3.0 (Example: 0.45% ATR = 1.35% SL)
minTp1Percent: 1.1, // Floor: Never below +1.1%
maxTp1Percent: 1.1, // Cap: Fixed at +1.1%
minTp1Percent: 1.45, // Floor: Never below +1.45%
maxTp1Percent: 1.45, // Cap: Fixed at +1.45%
minTp2Percent: 1.0, // Floor: Never below +1.0%
maxTp2Percent: 3.0, // Cap: Never above +3.0%
minSlPercent: 2.8, // Floor: Never tighter than -2.8%