Improve handling of unfilled stoploss orders in edge-cases

This commit is contained in:
Matthias 2022-11-08 20:34:18 +01:00
parent ce3959a0c6
commit f43f967040
1 changed files with 1 additions and 1 deletions

View File

@ -667,7 +667,7 @@ class LocalTrade():
self.close(order.safe_price)
else:
self.recalc_trade_from_orders()
elif order.ft_order_side == 'stoploss':
elif order.ft_order_side == 'stoploss' and order.status not in ('canceled', 'open'):
self.stoploss_order_id = None
self.close_rate_requested = self.stop_loss
self.exit_reason = ExitType.STOPLOSS_ON_EXCHANGE.value