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