Binance Connector JS
    Preparing search index...

    Order book data.

    FullDepthResponseData

    interface FullDepthResponseData {
        asks?: string[][];
        bids?: string[][];
        E?: number | bigint;
        lastUpdateId?: number | bigint;
        symbol?: string;
        T?: number | bigint;
    }
    Index

    Properties

    asks?: string[][]

    Ask orders. Each entry is [price, quantity].

    FullDepthResponseData

    bids?: string[][]

    Bid orders. Each entry is [price, quantity].

    FullDepthResponseData

    E?: number | bigint

    Event time in milliseconds.

    FullDepthResponseData

    lastUpdateId?: number | bigint

    Last order book update ID.

    FullDepthResponseData

    symbol?: string

    Trading pair symbol.

    FullDepthResponseData

    T?: number | bigint

    Transaction time in milliseconds.

    FullDepthResponseData