From 897c14e2e5f3725337747a9e093e0c8c2039677d Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 8 Oct 2023 09:40:35 +0200 Subject: [PATCH] Don't check for "open orders" in handle_cancel_enter it's actually irrelenant (closes #9273). --- freqtrade/freqtradebot.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/freqtrade/freqtradebot.py b/freqtrade/freqtradebot.py index 63e6ecdec..1b6f9b8ae 100644 --- a/freqtrade/freqtradebot.py +++ b/freqtrade/freqtradebot.py @@ -1506,9 +1506,6 @@ class FreqtradeBot(LoggingMixin): """ was_trade_fully_canceled = False side = trade.entry_side.capitalize() - if not trade.has_open_orders: - logger.warning(f"No open order for {trade}.") - return False if order['status'] not in constants.NON_OPEN_EXCHANGE_STATES: filled_val: float = order.get('filled', 0.0) or 0.0