* Cancels all orders * @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 * @return {promise or undefined} - omitting the callback returns a promise
(symbol: string, params: Dict = {})
| 1070 | * @return {promise or undefined} - omitting the callback returns a promise |
| 1071 | */ |
| 1072 | async cancelAll(symbol: string, params: Dict = {}): Promise<CancelOrder> { |
| 1073 | return await this.privateSpotRequest('v3/openOrders', this.extend({ symbol: symbol }, params), 'DELETE'); |
| 1074 | } |
| 1075 | |
| 1076 | /** |
| 1077 | * Gets the status of an order |
nothing calls this directly
no test coverage detected