From 0a7fe730f00d204675712ed19f55fc814e20043e Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 21 Mar 2026 08:51:15 +0100 Subject: [PATCH] fix: trade recovery improvement --- freqtrade/freqtradebot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/freqtradebot.py b/freqtrade/freqtradebot.py index bfb9a1841..28560a460 100644 --- a/freqtrade/freqtradebot.py +++ b/freqtrade/freqtradebot.py @@ -555,7 +555,7 @@ class FreqtradeBot(LoggingMixin): if trade.base_currency else 0 ) - if total < trade.amount: + if total < trade.amount or (total == 0 and trade.amount == 0): if trade.fully_canceled_entry_order_count == len(trade.orders): logger.warning( f"Trade only had fully canceled entry orders. "