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

Method parse_type

python/ccxt/bigone.py:1410–1417  ·  view source on GitHub ↗
(self, type: str)

Source from the content-addressed store, hash-verified

1408 return self.parse_balance(response)
1409
1410 def parse_type(self, type: str):
1411 types = {
1412 'STOP_LIMIT': 'limit',
1413 'STOP_MARKET': 'market',
1414 'LIMIT': 'limit',
1415 'MARKET': 'market',
1416 }
1417 return self.safe_string(types, type, type)
1418
1419 def parse_order(self, order: dict, market: Market = None) -> Order:
1420 #

Callers 1

parse_orderMethod · 0.95

Calls 1

safe_stringMethod · 0.80

Tested by

no test coverage detected