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

Method futuresLimitOrder

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

* @description futures limit order * @see https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/rest-api/New-Order * @param side * @param symbol * @param quantity * @param price * @param params extra parameters to be sent in the request * @ret

(side: OrderSide, symbol: string, quantity: number, price: number, params: Dict = {})

Source from the content-addressed store, hash-verified

4826 * @returns
4827 */
4828 async futuresLimitOrder(side: OrderSide, symbol: string, quantity: number, price: number, params: Dict = {}) {
4829 return await this.futuresOrder('LIMIT', side, symbol, quantity, price, params);
4830 }
4831
4832 /**
4833 * @see https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/rest-api/New-Order

Callers

nothing calls this directly

Calls 1

futuresOrderMethod · 0.95

Tested by

no test coverage detected