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