interface TradingTrade {
    color?: string;
    id: string;
    label?: string;
    price: number;
    side: TradingOrderSide;
    size: number;
    timestamp: number;
    variant?: TradeMarkerVariant;
}

Properties

color?: string
id: string
label?: string
price: number
size: number
timestamp: number

Execution time in milliseconds.