Interface LimitOrder

interface LimitOrder {
    client_oid?: string;
    price: string;
    product_id: string;
    side: OrderSide;
    size: string;
    stop?: "loss" | "entry";
    stop_price?: string;
    stp?: SelfTradePrevention;
    time_in_force?: TimeInForce;
    type: LIMIT;
}

Hierarchy (view full)

Properties

client_oid?: string
price: string
product_id: string
side: OrderSide
size: string
stop?: "loss" | "entry"
stop_price?: string
time_in_force?: TimeInForce

Default is 'GTC'.

type: LIMIT