config: Upgrade SOL leverage from 7x to 10x

- SOLANA_LEVERAGE: 7 → 10
- BASE_LEVERAGE: 7 → 10
- STACK_LEVERAGE: 7 → 10
- MAX_LEVERAGE_TOTAL: 14 → 20

Risk:reward ratio unchanged at 1:1.12
Faster compounding with 43% larger positions
This commit is contained in:
mindesbunister
2026-01-16 20:36:57 +01:00
parent 87a7d8ab2f
commit d9f70b9464
2 changed files with 11 additions and 11 deletions

View File

@@ -2938,8 +2938,8 @@ MIN_TP1_PERCENT=0.5 # Don't go below 0.5% for TP1
MAX_TP1_PERCENT=1.5 # Don't go above 1.5% for TP1
MIN_TP2_PERCENT=1.0 # Don't go below 1.0% for TP2
MAX_TP2_PERCENT=3.0 # Don't go above 3.0% for TP2
MIN_SL_PERCENT=1.3 # Fixed SL (Jan 16, 2026 - optimized for 7x leverage)
MAX_SL_PERCENT=1.3 # Fixed SL (Jan 16, 2026 - optimized for 7x leverage)
MIN_SL_PERCENT=1.3 # Fixed SL (Jan 16, 2026 - optimized for 10x leverage)
MAX_SL_PERCENT=1.3 # Fixed SL (Jan 16, 2026 - optimized for 10x leverage)
# Legacy fallback (used when ATR unavailable)
STOP_LOSS_PERCENT=-1.3
@@ -6107,7 +6107,7 @@ model Trade {
```
**Core Logic Flow:**
1. **First signal** → Open position with 7x leverage (`pyramidLevel: 1`)
1. **First signal** → Open position with 10x leverage (`pyramidLevel: 1`)
2. **Second signal within 4 hours** → Check same direction + within window + under max levels
3. **If valid** → Add 7x position (`pyramidLevel: 2`, `parentTradeId` = base trade ID)
4. **Position Manager** tracks pyramid group via `pyramidGroups` Map