https://trade.cex.io/docs/#rest-private-api-calls-orders fetches information on multiple canceled orders made by the user :param str symbol: unified market symbol of the market orders were made in :param int [since]: timestamp in ms of the earliest order, default i
(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})
| 1064 | return await self.fetch_orders_by_status('closed', symbol, since, limit, params) |
| 1065 | |
| 1066 | async def fetch_open_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}): |
| 1067 | """ |
| 1068 | |
| 1069 | https://trade.cex.io/docs/#rest-private-api-calls-orders |
| 1070 | |
| 1071 | fetches information on multiple canceled orders made by the user |
| 1072 | :param str symbol: unified market symbol of the market orders were made in |
| 1073 | :param int [since]: timestamp in ms of the earliest order, default is None |
| 1074 | :param int [limit]: max number of orders to return, default is None |
| 1075 | :param dict [params]: extra parameters specific to the exchange API endpoint |
| 1076 | :returns dict: a list of `order structures <https://docs.ccxt.com/?id=order-structure>` |
| 1077 | """ |
| 1078 | return await self.fetch_orders_by_status('open', symbol, since, limit, params) |
| 1079 | |
| 1080 | async def fetch_open_order(self, id: str, symbol: Str = None, params={}): |
| 1081 | """ |
no test coverage detected