Temporarily support 'finish' in the order, too

This commit is contained in:
Matthias
2024-03-17 17:00:18 +01:00
parent 838d9cd4d0
commit 409729f9d2

View File

@@ -104,7 +104,8 @@ class Gate(Exchange):
pair=pair,
params={'stop': True}
)
if order.get('status', 'open') == 'closed':
if order.get('status', 'open') in ('closed', 'finish'):
# TODO: Should check for "finish" once ccxt 4.2.75 is available
# Places a real order - which we need to fetch explicitly.
val = 'trade_id' if self.trading_mode == TradingMode.FUTURES else 'fired_order_id'