aftermath-ts-sdk - v3.3.3
    Preparing search index...

    Interface PerpetualsMarketCandleDataPoint

    Single OHLCV data point for a market candle.

    Typically used in charts and historical data views.

    interface PerpetualsMarketCandleDataPoint {
        close: number;
        high: number;
        low: number;
        open: number;
        timestamp: number;
        volume: number;
    }
    Index
    close: number

    Close price at the end of the interval.

    high: number

    High price within this interval.

    low: number

    Low price within this interval.

    open: number

    Open price at the beginning of the interval.

    timestamp: number

    Start timestamp of this candle.

    volume: number

    Traded volume (base units) during the interval.