(self, timeInForce: Str)
| 1776 | return self.fetch_orders(symbol, since, limit, extendedParams) |
| 1777 | |
| 1778 | def parse_time_in_force(self, timeInForce: Str): |
| 1779 | timeInForces = { |
| 1780 | 'ioc': 'IOC', |
| 1781 | 'fok': 'FOK', |
| 1782 | 'gtc': 'GTC', |
| 1783 | 'post_only': 'PO', |
| 1784 | } |
| 1785 | return self.safe_string(timeInForces, timeInForce) |
| 1786 | |
| 1787 | def parse_order_status(self, status: Str): |
| 1788 | if status is not None: |
no test coverage detected