From 5fb951155617c838e6b25f2174b2a6e885204c9a Mon Sep 17 00:00:00 2001 From: Stefano Ariestasia Date: Thu, 20 Jan 2022 10:34:35 +0900 Subject: [PATCH] fix typo --- freqtrade/freqtradebot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/freqtradebot.py b/freqtrade/freqtradebot.py index f45a49d81..f783b01a1 100644 --- a/freqtrade/freqtradebot.py +++ b/freqtrade/freqtradebot.py @@ -474,7 +474,7 @@ class FreqtradeBot(LoggingMixin): Once that completes, the existing trade is modified to match new data. """ if self.strategy.max_buy_position_adjustment > -1: - logger.info(f"Max adjustment buy is set to {self.strategy.max_buy_position_adsjutment}.") + logger.info(f"Max adjustment buy is set to {self.strategy.max_buy_position_adjustment}.") filled_buys = trade.select_filled_orders('buy') count_of_buys = len(filled_buys)