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

Method papi_modify_cm_order

binance/client.py:11286–11294  ·  view source on GitHub ↗

Order modify function, currently only LIMIT order modification is supported, modified orders will be reordered in the match queue. https://developers.binance.com/docs/derivatives/portfolio-margin/trade/Modify-CM-Order :returns: API response

(self, **params)

Source from the content-addressed store, hash-verified

11284 return self._request_papi_api("put", "um/order", signed=True, data=params)
11285
11286 def papi_modify_cm_order(self, **params):
11287 """Order modify function, currently only LIMIT order modification is supported, modified orders will be reordered in the match queue.
11288
11289 https://developers.binance.com/docs/derivatives/portfolio-margin/trade/Modify-CM-Order
11290
11291 :returns: API response
11292
11293 """
11294 return self._request_papi_api("put", "cm/order", signed=True, data=params)
11295
11296 def papi_get_um_order(self, **params):
11297 """Check an UM order's status.

Callers 2

Calls 1

_request_papi_apiMethod · 0.95

Tested by 2