* Gets all order of a given symbol * @see https://developers.binance.com/docs/binance-spot-api-docs/rest-api/trading-endpoints#all-orders-user_data * @param {string} symbol - the symbol * @param {object} options - additional options * @return {promise or undefined} - omitting the cal
(symbol: string, params: Dict = {})
| 1142 | * @return {promise or undefined} - omitting the callback returns a promise |
| 1143 | */ |
| 1144 | async allOrders(symbol: string, params: Dict = {}): Promise<QueryOrder[]> { |
| 1145 | const parameters = this.extend({ symbol }, params); |
| 1146 | return await this.privateSpotRequest('v3/allOrders', parameters); |
| 1147 | } |
| 1148 | |
| 1149 | /** |
| 1150 | * Create a signed margin order |
no test coverage detected