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

Method fetch_open_orders

python/ccxt/async_support/cex.py:1066–1078  ·  view source on GitHub ↗

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={})

Source from the content-addressed store, hash-verified

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 """

Callers 1

fetch_open_orderMethod · 0.95

Calls 1

Tested by

no test coverage detected