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

Method mgOrder

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

* 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')

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

marginOrderMethod · 0.95

Tested by

no test coverage detected