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

Method futuresSell

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

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

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

Source from the content-addressed store, hash-verified

4800 * @returns
4801 */
4802 async futuresSell(symbol: string, quantity: number, price: number, params: Dict = {}) {
4803 return await this.futuresOrder('LIMIT', 'SELL', symbol, quantity, price, params);
4804 }
4805
4806 /**
4807 * @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