Interface IDEXOrderBookLevel2EventData

interface IDEXOrderBookLevel2EventData {
    sequence: number;
    lastPrice: null | string;
    markPrice: null | string;
    indexPrice: null | string;
    bids: OrderBookPriceLevel[];
    asks: OrderBookPriceLevel[];
    market: string;
    time: number;
}

Hierarchy (view full)

Properties

sequence: number

Most recent order book update sequence number reflected in the returned snapshot

lastPrice: null | string

Price of the last trade in quote terms

markPrice: null | string

Mark price

indexPrice: null | string

Index price

One or more bids depending on the Orderbook Level

One or more asks depending on the Orderbook Level

market: string

Market symbol

time: number

Timestamp of the order book update