Binance Connector JS
    Preparing search index...

    OrderBookResponse

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

    Properties

    asks?: string[][]

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

    OrderBookResponse

    bids?: string[][]

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

    OrderBookResponse

    E?: number | bigint

    Message output time

    OrderBookResponse

    lastUpdateId?: number | bigint

    Last update ID.

    OrderBookResponse

    pair?: string

    Pair

    OrderBookResponse

    symbol?: string

    Trading symbol

    OrderBookResponse

    T?: number | bigint

    Transaction time

    OrderBookResponse