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:
Tika
2026-03-08 21:45:47 +00:00
parent b3983d9ef8
commit 8f3b026f82
2 changed files with 3 additions and 2 deletions

View File

@@ -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',