Interface IBaseCreateOrderParams

IBaseCreateOrderParams Interface representing the base parameters for creating an order.

interface IBaseCreateOrderParams {
    base_amount: number;
    side: OrderSide;
    symbol: `${string}_IRT` | `${string}_USDT`;
    type: OrderType;
}

Hierarchy (view full)

Properties

base_amount: number

The base amount for the order.

side: OrderSide

The side of the order (buy/sell).

symbol: `${string}_IRT` | `${string}_USDT`

The symbol for the order.

type: OrderType

The type of the order.