* 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 = {})
| 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 |
nothing calls this directly
no test coverage detected