From fe0afb98832e662fbec06decc951143e8e5c113b Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 24 Oct 2020 17:09:30 +0200 Subject: [PATCH] Implement calling of per-pair protection --- freqtrade/freqtradebot.py | 1 + 1 file changed, 1 insertion(+) diff --git a/freqtrade/freqtradebot.py b/freqtrade/freqtradebot.py index 75ff07b17..7bfd64c2d 100644 --- a/freqtrade/freqtradebot.py +++ b/freqtrade/freqtradebot.py @@ -1415,6 +1415,7 @@ class FreqtradeBot: # Updating wallets when order is closed if not trade.is_open: + self.protections.stop_per_pair(trade.pair) self.wallets.update() return False