MCPcopy Create free account
hub / github.com/ccxt/node-binance-api / cancelAllOrders

Method cancelAllOrders

src/node-binance-api.ts:1109–1111  ·  view source on GitHub ↗

* Cancels all orders of a given symbol * @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api/trading-endpoints#cancel-all-open-orders-on-a-symbol-trade * @param {string} symbol - the symbol to cancel all orders for * @return {promise or undefined} - omitting the callb

(symbol: string, params: Dict = {})

Source from the content-addressed store, hash-verified

1107 * @return {promise or undefined} - omitting the callback returns a promise
1108 */
1109 async cancelAllOrders(symbol: string, params: Dict = {}) {
1110 return await this.privateSpotRequest('v3/openOrders', this.extend({ symbol }, params), 'DELETE');
1111 }
1112
1113 // /**
1114 // * Cancels all orders of a given symbol

Callers

nothing calls this directly

Calls 1

privateSpotRequestMethod · 0.95

Tested by

no test coverage detected