* Creates a market sell order * @see https://developers.binance.com/docs/margin_trading/trade/Margin-Account-New-Order * @param {string} symbol - the symbol to sell * @param {numeric} quantity - the quantity required * @param {object} flags - additional sell order flags * @p
(symbol: string, quantity: number, params: Dict = {}, isIsolated = 'FALSE')
| 5412 | * @return {undefined} |
| 5413 | */ |
| 5414 | async mgMarketSell(symbol: string, quantity: number, params: Dict = {}, isIsolated = 'FALSE') { |
| 5415 | return await this.marginOrder('MARKET', 'SELL', symbol, quantity, 0, { ...params, isIsolated }); |
| 5416 | } |
| 5417 | |
| 5418 | /** |
| 5419 | * Cancels an order |
nothing calls this directly
no test coverage detected