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

Method allOrders

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

* 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 = {})

Source from the content-addressed store, hash-verified

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

Callers 2

live-tests.cjsFile · 0.80

Calls 1

privateSpotRequestMethod · 0.95

Tested by

no test coverage detected