Interface IDEXCandle

Candle (OHLCV) data points aggregated by time interval

  • Candles only include values from fills, not liquidations or ADLs.
interface IDEXCandle {
    start: number;
    open: string;
    high: string;
    low: string;
    close: string;
    baseVolume: null | string;
    quoteVolume: null | string;
    trades: null | number;
    sequence: null | number;
}

Hierarchy (view full)

Properties

start: number

Time of the start of the interval

open: string

Price of the first trade in the interval in quote terms

high: string

Price of the traded price in the interval in quote terms

low: string

Price of the traded price in the interval in quote terms

close: string

Price of the last trade in the interval in quote terms

baseVolume: null | string

Trading volume in the interval in base terms, null for some historical chart data

quoteVolume: null | string

Trading volume in the interval in quote terms, null for some historical chart data

trades: null | number

Number of trades in the interval, null for some historical chart data

sequence: null | number

Fill sequence number of the last trade in the interval, null for some historical chart data