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

Method mgOrderStatus

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

* Gets the status of an order * @param {string} symbol - the symbol to check * @param {string} orderid - the orderid to check * @param {object} flags - any additional flags * @return {undefined}

(symbol: string, orderid: number | string, flags = {})

Source from the content-addressed store, hash-verified

5444 * @return {undefined}
5445 */
5446 async mgOrderStatus(symbol: string, orderid: number | string, flags = {}): Promise<Order> {
5447 const parameters = Object.assign({ symbol: symbol, orderId: orderid }, flags);
5448 return await this.privateSapiRequest('v1/margin/order', parameters);
5449 }
5450
5451 /**
5452 * Gets open orders

Callers

nothing calls this directly

Calls 1

privateSapiRequestMethod · 0.95

Tested by

no test coverage detected