Interface Product

interface Product {
    base_currency: string;
    base_increment: string;
    base_max_size: string;
    base_min_size: string;
    cancel_only: boolean;
    display_name: string;
    id: string;
    limit_only: boolean;
    margin_enabled: boolean;
    max_market_funds: string;
    min_market_funds: string;
    post_only: boolean;
    quote_currency: string;
    quote_increment: string;
    status: "online";
    status_message: string;
    trading_disabled: boolean;
}

Properties

base_currency: string
base_increment: string
base_max_size: string

Maximum order size

base_min_size: string

Minimum order size

cancel_only: boolean
display_name: string
id: string
limit_only: boolean
margin_enabled: boolean
max_market_funds: string
min_market_funds: string
post_only: boolean
quote_currency: string
quote_increment: string

Increment steps for min/max order size. The order price must be a multiple of this increment (i.e. if the increment is 0.01, order prices of 0.001 or 0.021 would be rejected).

status: "online"
status_message: string
trading_disabled: boolean