Interface PostOnlyLimitOrder

interface PostOnlyLimitOrder {
    client_oid?: string;
    post_only: boolean;
    price: string;
    product_id: string;
    side: OrderSide;
    size: string;
    stop?: "loss" | "entry";
    stop_price?: string;
    stp?: SelfTradePrevention;
    time_in_force: GOOD_TILL_CANCELED | GOOD_TILL_TIME;
    type: LIMIT;
}

Hierarchy (view full)

Properties

client_oid?: string
post_only: boolean
price: string
product_id: string
side: OrderSide
size: string
stop?: "loss" | "entry"
stop_price?: string

Default is 'GTC'.

type: LIMIT