docs: mise à jour TP scalping 3×ATR → 4×ATR dans la documentation
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -380,7 +380,7 @@ class ScalpingStrategy(BaseStrategy):
|
||||
direction='LONG',
|
||||
entry_price=current['close'],
|
||||
stop_loss=current['close'] - (2 * current['atr']),
|
||||
take_profit=current['close'] + (3 * current['atr']), # R:R 1.5
|
||||
take_profit=current['close'] + (4 * current['atr']), # R:R 2:1 (breakeven ~34%)
|
||||
confidence=confidence,
|
||||
timestamp=current.name,
|
||||
strategy='scalping',
|
||||
@@ -404,7 +404,7 @@ class ScalpingStrategy(BaseStrategy):
|
||||
direction='SHORT',
|
||||
entry_price=current['close'],
|
||||
stop_loss=current['close'] + (2 * current['atr']),
|
||||
take_profit=current['close'] - (3 * current['atr']),
|
||||
take_profit=current['close'] - (4 * current['atr']), # R:R 2:1 (breakeven ~34%)
|
||||
confidence=confidence,
|
||||
timestamp=current.name,
|
||||
strategy='scalping',
|
||||
|
||||
Reference in New Issue
Block a user