KLines where number trades 0

Hello,

When i request kline from this currencies, srmusdt / hntusdt / rayusdt / btsusdt / fttusdt / scusdt the number of trades come 0.
Did anyone know why?

What’s the used interval and what field you’re using to check the number of trades?
Please provide an example and the used request URL.

Doing: GET https://api.binance.com/api/v3/klines?symbol=SRMUSDT&interval=1d
Gives correct response (1 kline example):

    [
        1626739200000,
        "2.66390000",
        "2.72140000",
        "2.38440000",
        "2.46490000",
        "2349741.86000000",
        1626825599999,
        "5850871.08974400",
        28525,  // Number of trades
        "1160200.68000000",
        "2893842.22726000",
        "0" // Unused field, ignore.
    ],

For Example: https://fapi.binance.com/fapi/v1/klines?symbol=rayusdt&interval=15m

@PT_Olx

If you use this endpoint to get information about the Futures Exchange:
GET https://fapi.binance.com/fapi/v1/exchangeInfo
You’ll see that for "symbol": "RAYUSDT", it has "status": "SETTLING".

Status SETTLING doesn’t have trading ongoing.

1 Like