MCPcopy Create free account
hub / github.com/ccxt/ccxt / parse_ws_order_status

Method parse_ws_order_status

python/ccxt/pro/bitget.py:1916–1925  ·  view source on GitHub ↗
(self, status)

Source from the content-addressed store, hash-verified

1914 }, market)
1915
1916 def parse_ws_order_status(self, status):
1917 statuses = {
1918 'new': 'open',
1919 'live': 'open',
1920 'partially_filled': 'open',
1921 'filled': 'closed',
1922 'cancelled': 'canceled',
1923 'not_trigger': 'open',
1924 }
1925 return self.safe_string(statuses, status, status)
1926
1927 async def watch_my_trades(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Trade]:
1928 """

Callers 1

parse_ws_orderMethod · 0.95

Calls 1

safe_stringMethod · 0.80

Tested by

no test coverage detected