fix: Change revenge system to 1.0x position sizing (same as original)
**ISSUE:** User operates at 100% capital allocation - no room for 1.2x sizing - 1.2x would require 120% of capital (mathematically impossible) - User: 'thats not gonna work. we are already using 100% of our portfolio' **FIX:** Changed from 1.2x to 1.0x (same size as original trade) - Focus on capturing reversal, not sizing bigger - Maintains aggressive 15x leverage - Example: Original ,350 → Revenge ,350 (not 0,020) **FILES CHANGED:** - lib/trading/stop-hunt-tracker.ts: sizingMultiplier 1.2 → 1.0 - Telegram notification: Updated to show 'same as original' - Documentation: Updated all references to 1.0x strategy **DEPLOYED:** Nov 20, 2025 ~20:30 CET **BUILD TIME:** 71.8s, compiled successfully **STATUS:** Container running stable, stop hunt tracker operational
This commit is contained in:
@@ -270,7 +270,7 @@ export class StopHuntTracker {
|
||||
originalTradeId: stopHunt.originalTradeId,
|
||||
stopHuntId: stopHunt.id,
|
||||
originalLoss: stopHunt.stopLossAmount,
|
||||
sizingMultiplier: 1.2 // 20% larger position
|
||||
sizingMultiplier: 1.0 // Same size as original (user at 100% allocation)
|
||||
}
|
||||
})
|
||||
})
|
||||
@@ -315,7 +315,7 @@ export class StopHuntTracker {
|
||||
|
||||
💀 Original Stop Hunt: -$${stopHunt.stopLossAmount.toFixed(2)}
|
||||
🎯 Revenge Entry: $${trade.entryPrice.toFixed(2)}
|
||||
💪 Position Size: $${trade.positionSizeUSD.toFixed(2)} (1.2x)
|
||||
💪 Position Size: $${trade.positionSizeUSD.toFixed(2)} (same as original)
|
||||
|
||||
⚔️ <b>TIME FOR PAYBACK!</b>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user