rollback on process_open_trade_positions. Adjust position only if there is no open order, change will be made on other PR

This commit is contained in:
Axel-CH 2024-09-09 13:30:07 -04:00
parent 714822c93c
commit 79ce1ddaef

View File

@ -713,6 +713,7 @@ class FreqtradeBot(LoggingMixin):
"""
# Walk through each pair and check if it needs changes
for trade in Trade.get_open_trades():
if not trade.has_open_orders:
# Do a wallets update (will be ratelimited to once per hour)
self.wallets.update(False)
try: