interface ClassifiedTrade {
    price: number;
    qty: number;
    side: "bid" | "ask";
}

Hierarchy (View Summary)

Properties

Properties

price: number
qty: number
side: "bid" | "ask"

Whether the print hit the bid (sell-initiated) or the ask (buy-initiated).