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

Method parse_order_status

python/ccxt/grvt.py:2925–2933  ·  view source on GitHub ↗
(self, status: Str)

Source from the content-addressed store, hash-verified

2923 return self.safe_integer(timeInForces, timeInForce, 0)
2924
2925 def parse_order_status(self, status: Str):
2926 statuses = {
2927 'PENDING': 'pending',
2928 'OPEN': 'open',
2929 'FILLED': 'closed',
2930 'REJECTED': 'rejected',
2931 'CANCELLED': 'canceled',
2932 }
2933 return self.safe_string(statuses, status, status)
2934
2935 def cancel_all_orders(self, symbol: Str = None, params={}):
2936 """

Callers 1

parse_orderMethod · 0.95

Calls 1

safe_stringMethod · 0.80

Tested by

no test coverage detected