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

Method futuresBuy

src/node-binance-api.ts:4790–4792  ·  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

4788 * @returns
4789 */
4790 async futuresBuy(symbol: string, quantity: number, price: number, params: Dict = {}) {
4791 return await this.futuresOrder('LIMIT', 'BUY', symbol, quantity, price, params);
4792 }
4793
4794 /**
4795 * @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