From 195d601b8e808107663b4ac40c26a16c48ccb6ec Mon Sep 17 00:00:00 2001 From: Reigo Reinmets Date: Sat, 8 Jan 2022 17:41:59 +0200 Subject: [PATCH] Fix notification message showing "Current rate" as the initial buy order desired rate. --- freqtrade/freqtradebot.py | 1 + 1 file changed, 1 insertion(+) diff --git a/freqtrade/freqtradebot.py b/freqtrade/freqtradebot.py index 508bf9b73..618fde05a 100644 --- a/freqtrade/freqtradebot.py +++ b/freqtrade/freqtradebot.py @@ -620,6 +620,7 @@ class FreqtradeBot(LoggingMixin): # This is additional buy, we reset fee_open_currency so timeout checking can work trade.is_open = True trade.fee_open_currency = None + trade.open_rate_requested = enter_limit_requested trade.open_order_id = order_id trade.orders.append(order_obj)