MCPcopy Create free account
hub / github.com/sammchardy/python-binance / futures_get_open_orders

Method futures_get_open_orders

binance/async_client.py:2323–2329  ·  view source on GitHub ↗
(self, **params)

Source from the content-addressed store, hash-verified

2321 futures_get_order.__doc__ = Client.futures_get_order.__doc__
2322
2323 async def futures_get_open_orders(self, **params):
2324 is_conditional = params.pop("conditional", False)
2325
2326 if is_conditional:
2327 return await self._request_futures_api("get", "openAlgoOrders", True, data=params)
2328 else:
2329 return await self._request_futures_api("get", "openOrders", True, data=params)
2330
2331 futures_get_open_orders.__doc__ = Client.futures_get_open_orders.__doc__
2332

Callers

nothing calls this directly

Calls 1

_request_futures_apiMethod · 0.95

Tested by

no test coverage detected