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

Method parse_order_status

python/ccxt/whitebit.py:2440–2447  ·  view source on GitHub ↗
(self, status: Str)

Source from the content-addressed store, hash-verified

2438 }, market)
2439
2440 def parse_order_status(self, status: Str):
2441 statuses = {
2442 'CANCELED': 'canceled',
2443 'OPEN': 'open',
2444 'PARTIALLY_FILLED': 'open',
2445 'FILLED': 'closed',
2446 }
2447 return self.safe_string_lower(statuses, status, status)
2448
2449 def fetch_order_trades(self, id: str, symbol: Str = None, since: Int = None, limit: Int = None, params={}):
2450 """

Callers 1

parse_orderMethod · 0.95

Calls 1

safe_string_lowerMethod · 0.80

Tested by

no test coverage detected