allow adjust trade position, even if there is an open order

This commit is contained in:
Axel-CH 2024-04-15 15:40:57 -04:00
parent 05cf4cab8e
commit 910b3ad536

View File

@ -608,9 +608,6 @@ class FreqtradeBot(LoggingMixin):
"""
# Walk through each pair and check if it needs changes
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:
# Do a wallets update (will be ratelimited to once per hour)
self.wallets.update(False)
try: