Skip to content

Commit

Permalink
fix: update get execution_type bingx
Browse files Browse the repository at this point in the history
  • Loading branch information
fibonacci998 committed Nov 14, 2023
1 parent 311a36f commit 7b572c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hummingbot/connector/exchange/bing_x/bing_x_exchange.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ async def _user_stream_event_listener(self):
# client_order_id = event_message.get("c")
data = event_message.get('data')
exchange_order_id = data.get('i')
execution_type = data.get('x')
execution_type = data.get('X')
tracked_order = self._order_tracker.fetch_order(exchange_order_id=str(exchange_order_id))
if tracked_order is not None:
if execution_type in ["PARTIALLY_FILLED", "FILLED"]:
Expand Down

0 comments on commit 7b572c7

Please sign in to comment.