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

Method mgOpenOrders

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

* Gets open orders * @param {string} symbol - the symbol to get * @return {undefined}

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

Source from the content-addressed store, hash-verified

5454 * @return {undefined}
5455 */
5456 async mgOpenOrders(symbol?: string, params: Dict = {}): Promise<Order[]> {
5457 if (symbol) params.symbol = symbol;
5458 return await this.privateSapiRequest('v1/margin/openOrders', params);
5459 }
5460
5461 /**
5462 * Cancels all order of a given symbol

Callers 1

Calls 1

privateSapiRequestMethod · 0.95

Tested by

no test coverage detected