* Creates a 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 {numeric} price - the price to sell each unit for * @par
(symbol: string, quantity: number, price: number, flags: Dict = {}, isIsolated = 'FALSE')
| 5386 | * @return {undefined} |
| 5387 | */ |
| 5388 | async mgSell(symbol: string, quantity: number, price: number, flags: Dict = {}, isIsolated = 'FALSE') { |
| 5389 | return await this.marginOrder('LIMIT', 'SELL', symbol, quantity, price, { ...flags, isIsolated }); |
| 5390 | } |
| 5391 | |
| 5392 | /** |
| 5393 | * Creates a market buy order |
nothing calls this directly
no test coverage detected