From b3983d9ef8d55fe34827f701e90103f6740d01d5 Mon Sep 17 00:00:00 2001 From: Tika Date: Sun, 8 Mar 2026 21:44:42 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20scalping=20TP=203=C3=97ATR=20=E2=86=92?= =?UTF-8?q?=204=C3=97ATR=20pour=20R:R=3D2:1=20(breakeven=20~34%)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 4.6 --- src/strategies/scalping/scalping_strategy.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/strategies/scalping/scalping_strategy.py b/src/strategies/scalping/scalping_strategy.py index 9efcfae..5158b9a 100644 --- a/src/strategies/scalping/scalping_strategy.py +++ b/src/strategies/scalping/scalping_strategy.py @@ -247,8 +247,8 @@ class ScalpingStrategy(BaseStrategy): # Stop-loss à 2 ATR en dessous stop_loss = entry_price - (2.0 * atr) - # Take-profit à 3 ATR au-dessus (R:R 1.5:1) - take_profit = entry_price + (3.0 * atr) + # Take-profit à 4 ATR au-dessus (R:R 2:1) + take_profit = entry_price + (4.0 * atr) signal = Signal( symbol=current.name if hasattr(current, 'name') else 'UNKNOWN', @@ -289,8 +289,8 @@ class ScalpingStrategy(BaseStrategy): # Stop-loss à 2 ATR au-dessus stop_loss = entry_price + (2.0 * atr) - # Take-profit à 3 ATR en dessous (R:R 1.5:1) - take_profit = entry_price - (3.0 * atr) + # Take-profit à 4 ATR en dessous (R:R 2:1) + take_profit = entry_price - (4.0 * atr) signal = Signal( symbol=current.name if hasattr(current, 'name') else 'UNKNOWN',