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

Method parse_order_status

python/ccxt/bigone.py:1809–1815  ·  view source on GitHub ↗
(self, status: Str)

Source from the content-addressed store, hash-verified

1807 return self.parse_trades(trades, market, since, limit)
1808
1809 def parse_order_status(self, status: Str):
1810 statuses = {
1811 'PENDING': 'open',
1812 'FILLED': 'closed',
1813 'CANCELLED': 'canceled',
1814 }
1815 return self.safe_string(statuses, status)
1816
1817 def fetch_open_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
1818 """

Callers 1

parse_orderMethod · 0.95

Calls 1

safe_stringMethod · 0.80

Tested by

no test coverage detected