From 7470c807b4d4e0b2c6d0513030ccac64340fae20 Mon Sep 17 00:00:00 2001 From: Priveyes <3041616+Pascal66@users.noreply.github.com> Date: Thu, 20 May 2021 09:20:05 +0200 Subject: [PATCH] Update freqtrade/strategy/interface.py Co-authored-by: Matthias --- freqtrade/strategy/interface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/strategy/interface.py b/freqtrade/strategy/interface.py index 083602b55..e1710feea 100644 --- a/freqtrade/strategy/interface.py +++ b/freqtrade/strategy/interface.py @@ -679,7 +679,7 @@ class IStrategy(ABC, HyperStrategyMixin): # If initial stoploss is not the same as current one then it is trailing. if trade.initial_stop_loss != trade.stop_loss: sell_type = SellType.TRAILING_STOP_LOSS - if self.use_custom_stoploss : + if self.use_custom_stoploss: sell_type = SellType.CUSTOM_STOP_LOSS logger.debug(