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