fetches information on multiple canceled orders made by the user https://docs.cdp.coinbase.com/api-reference/advanced-trade-api/rest-api/orders/list-orders :param str symbol: unified market symbol of the orders :param int [since]: timestamp in ms of the earliest or
(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})
| 3613 | return self.fetch_orders_by_status('FILLED', symbol, since, limit, params) |
| 3614 | |
| 3615 | def fetch_canceled_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}): |
| 3616 | """ |
| 3617 | fetches information on multiple canceled orders made by the user |
| 3618 | |
| 3619 | https://docs.cdp.coinbase.com/api-reference/advanced-trade-api/rest-api/orders/list-orders |
| 3620 | |
| 3621 | :param str symbol: unified market symbol of the orders |
| 3622 | :param int [since]: timestamp in ms of the earliest order, default is None |
| 3623 | :param int [limit]: the maximum number of canceled order structures to retrieve |
| 3624 | :param dict [params]: extra parameters specific to the exchange API endpoint |
| 3625 | :returns dict: a list of `order structures <https://docs.ccxt.com/?id=order-structure>` |
| 3626 | """ |
| 3627 | return self.fetch_orders_by_status('CANCELLED', symbol, since, limit, params) |
| 3628 | |
| 3629 | def fetch_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={}) -> List[list]: |
| 3630 | """ |
nothing calls this directly
no test coverage detected