What the menu asks a host to do when an order row is picked.

interface OrderRequest {
    paneIndex: number;
    price: null | number;
    side: "BUY" | "SELL";
    type: "MARKET" | "LIMIT" | "SL";
}

Properties

paneIndex: number
price: null | number

The price under the pointer; null for a market order raised off the plot.

side: "BUY" | "SELL"
type: "MARKET" | "LIMIT" | "SL"