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