From 3d6e186b300bcb8f27c2541e22560e06e113779a Mon Sep 17 00:00:00 2001 From: Axel-CH Date: Mon, 7 Oct 2024 12:35:09 -0400 Subject: [PATCH] allow position ajustment if position open --- freqtrade/freqtradebot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/freqtradebot.py b/freqtrade/freqtradebot.py index 6370e1c23..a63286d81 100644 --- a/freqtrade/freqtradebot.py +++ b/freqtrade/freqtradebot.py @@ -717,7 +717,7 @@ class FreqtradeBot(LoggingMixin): for trade in Trade.get_open_trades(): # If there is any open orders, wait for them to finish. # TODO Remove to allow mul open orders - if not trade.has_open_orders: + if trade.has_open_position: # Do a wallets update (will be ratelimited to once per hour) self.wallets.update(False) try: