ICreateStopLimitOrderParams Interface representing the parameters for creating a stop limit order.
const createStopLimitOrderParams: ICreateStopLimitOrderParams = { symbol: 'BTC_USDT', type: OrderType.STOP_LIMIT, side: OrderSide.BUY, base_amount: 1, price: 50000, stop_price: 49000,} Copy
const createStopLimitOrderParams: ICreateStopLimitOrderParams = { symbol: 'BTC_USDT', type: OrderType.STOP_LIMIT, side: OrderSide.BUY, base_amount: 1, price: 50000, stop_price: 49000,}
The base amount for the order.
The price value.
The side of the order (buy/sell).
The stop price value.
The symbol for the order.
The type of the order (stop limit).
ICreateStopLimitOrderParams Interface representing the parameters for creating a stop limit order.
Example