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)
| 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. |