Binance Connector JS
    Preparing search index...

    Interface TickerBookTickerRequest

    Request parameters for tickerBookTicker operation in MarketApi. TickerBookTickerRequest

    interface TickerBookTickerRequest {
        symbol?: string;
        symbols?: string[];
        symbolStatus?: TickerBookTickerSymbolStatusEnum;
    }
    Index

    Properties

    symbol?: string

    Parameter symbol and symbols cannot be used in combination. If neither parameter is sent, bookTickers for all symbols will be returned in an array.

    MarketApiTickerBookTicker

    symbols?: string[]

    Parameter symbol and symbols cannot be used in combination. If neither parameter is sent, bookTickers for all symbols will be returned in an array. Examples of accepted format for the symbols parameter: ["BTCUSDT","BNBUSDT"] or %5B%22BTCUSDT%22,%22BNBUSDT%22%5D

    MarketApiTickerBookTicker

    Filters for symbols that have this tradingStatus. For a single symbol, a status mismatch returns error -1220 SYMBOL_DOES_NOT_MATCH_STATUS. For multiple or all symbols, non-matching ones are simply excluded from the response.

    MarketApiTickerBookTicker