Interface IDEXOrderBookLevel1EventData

Level-1 event messages include properties that help indicate what changes were made that triggered the message event.

interface IDEXOrderBookLevel1EventData {
    lastPrice: null | string;
    markPrice: null | string;
    indexPrice: null | string;
    market: string;
    time: number;
    bidPrice: string;
    bidQuantity: string;
    askPrice: string;
    askQuantity: string;
}

Hierarchy

  • Pick<IDEXOrderBook, "markPrice" | "indexPrice" | "lastPrice">
    • IDEXOrderBookLevel1EventData

Properties

lastPrice: null | string

Price of the last trade in quote terms

markPrice: null | string

Mark price

indexPrice: null | string

Index price

market: string

Market symbol

time: number

Timestamp of the order book update

bidPrice: string

Best bid price

See

tuple OrderBookPriceLevel.price

bidQuantity: string

Quantity available at the best bid price

See

tuple OrderBookPriceLevel.size

askPrice: string

Best ask price

See

tuple OrderBookPriceLevel.price

askQuantity: string

Quantity available at the best ask price

See

tuple OrderBookPriceLevel.size