From 0f670189ebfaac0817c8726d607295870d9ba576 Mon Sep 17 00:00:00 2001 From: theluxaz Date: Wed, 13 Oct 2021 02:14:07 +0300 Subject: [PATCH] quick typo fix --- freqtrade/freqtradebot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/freqtradebot.py b/freqtrade/freqtradebot.py index f0a54500e..f8b9dbb5e 100644 --- a/freqtrade/freqtradebot.py +++ b/freqtrade/freqtradebot.py @@ -716,7 +716,7 @@ class FreqtradeBot(LoggingMixin): logger.debug('checking sell') sell_rate = self.exchange.get_rate(trade.pair, refresh=True, side="sell") - if self._check_and_execute_sell(trade, sell_rate, buy, sell, sell_tag): + if self._check_and_execute_exit(trade, sell_rate, buy, sell, sell_tag): return True logger.debug('Found no sell signal for %s.', trade)