Binance Connector JS
    Preparing search index...

    Candlestick payload.

    KlineStreamResponseK

    interface KlineStreamResponseK {
        c?: string;
        ct?: number | bigint;
        h?: string;
        i?: string;
        l?: string;
        n?: null | number;
        o?: string;
        s?: string;
        t?: number | bigint;
        v?: string;
        vw?: null | string;
        x?: boolean;
    }
    Index

    Properties

    Properties

    c?: string

    Close price (latest print within the interval).

    KlineStreamResponseK

    ct?: number | bigint

    Close time (epoch milliseconds). For fixed intervals: openTime + duration − 1ms. For 1M: last day of month at 23:59:59.999 UTC.

    KlineStreamResponseK

    h?: string

    High price.

    KlineStreamResponseK

    i?: string

    Interval — \"5m\" / \"1h\" / \"1d\" / \"1w\" / \"1M\".

    KlineStreamResponseK

    l?: string

    Low price.

    KlineStreamResponseK

    n?: null | number

    Trade count; absent when upstream did not populate.

    KlineStreamResponseK

    o?: string

    Open price.

    KlineStreamResponseK

    s?: string

    Symbol (UPPERCASE ticker).

    KlineStreamResponseK

    t?: number | bigint

    Open time (epoch milliseconds).

    KlineStreamResponseK

    v?: string

    Volume (shares), default \"0\".

    KlineStreamResponseK

    vw?: null | string

    VWAP (volume-weighted average price); absent when upstream did not populate.

    KlineStreamResponseK

    x?: boolean

    Candle is closed — true once the interval has ended.

    KlineStreamResponseK