* Creates an order * @see https://developers.binance.com/docs/margin_trading/trade/Margin-Account-New-Order * @param {string} side - BUY or SELL * @param {string} symbol - the symbol to buy * @param {numeric} quantity - the quantity required * @param {numeric} price - the pr
(type: OrderType, side: string, symbol: string, quantity: number, price: number, params: Dict = {}, isIsolated = 'FALSE')
| 5358 | * @return {undefined} |
| 5359 | */ |
| 5360 | async mgOrder(type: OrderType, side: string, symbol: string, quantity: number, price: number, params: Dict = {}, isIsolated = 'FALSE') { |
| 5361 | return await this.marginOrder(type, side, symbol, quantity, price, { ...params, isIsolated }); |
| 5362 | } |
| 5363 | |
| 5364 | /** |
| 5365 | * Creates a buy order |
nothing calls this directly
no test coverage detected