(self, status: Str)
| 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 | """ |
no test coverage detected