Event from subscribing to a trade stream.

interface EngineServerSubscriptionTradeEvent {
    timestamp: string;
    product_id: number;
    price: string;
    taker_qty: string;
    maker_qty: string;
    is_taker_buyer: boolean;
}

Properties

timestamp: string
product_id: number
price: string
taker_qty: string
maker_qty: string
is_taker_buyer: boolean