* @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 = {})
| 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 |
nothing calls this directly
no test coverage detected