Binance Connector JS
    Preparing search index...

    24-hour rolling window ticker statistics.

    TickerResponseData

    interface TickerResponseData {
        closeTime?: number | bigint;
        count?: number | bigint;
        firstId?: number | bigint;
        highPrice?: string;
        lastId?: number | bigint;
        lastPrice?: string;
        lastQty?: string;
        lowPrice?: string;
        openPrice?: string;
        openTime?: number | bigint;
        priceChange?: string;
        priceChangePercent?: string;
        quoteVolume?: string;
        symbol?: string;
        volume?: string;
        weightedAvgPrice?: string;
    }
    Index

    Properties

    closeTime?: number | bigint

    End time of the 24h window (milliseconds).

    TickerResponseData

    count?: number | bigint

    Total number of trades in the 24h window.

    TickerResponseData

    firstId?: number | bigint

    First trade ID in the 24h window.

    TickerResponseData

    highPrice?: string

    Highest price in the 24h window.

    TickerResponseData

    lastId?: number | bigint

    Last trade ID in the 24h window.

    TickerResponseData

    lastPrice?: string

    Latest traded price.

    TickerResponseData

    lastQty?: string

    Quantity of the latest trade.

    TickerResponseData

    lowPrice?: string

    Lowest price in the 24h window.

    TickerResponseData

    openPrice?: string

    Opening price of the 24h window.

    TickerResponseData

    openTime?: number | bigint

    Start time of the 24h window (milliseconds).

    TickerResponseData

    priceChange?: string

    Absolute price change in the 24h window.

    TickerResponseData

    priceChangePercent?: string

    Percentage price change in the 24h window.

    TickerResponseData

    quoteVolume?: string

    Quote asset volume in the 24h window.

    TickerResponseData

    symbol?: string

    Trading pair symbol.

    TickerResponseData

    volume?: string

    Base asset volume in the 24h window.

    TickerResponseData

    weightedAvgPrice?: string

    Weighted average price in the 24h window.

    TickerResponseData