Interface AutoCancelLimitOrder

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

Hierarchy (view full)

Properties

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

Default is 'GTC'.

type: LIMIT