* 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 = {})
| 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 |
nothing calls this directly
no test coverage detected