Interface MarketOrderOptions

Extra fields for the one-click market order, which a chart button cannot otherwise set.

interface MarketOrderOptions {
    clientToken?: string;
    exchange?: string;
    product?: "CNC" | "NRML" | "MIS";
}

Properties

clientToken?: string

Idempotency token, so a double-clicked button places one order, not two.

exchange?: string
product?: "CNC" | "NRML" | "MIS"