Interface OHLCVDataPoint

OHLCV data point interface for candlestick data

interface OHLCVDataPoint {
    close: string;
    datetime: string;
    high: string;
    low: string;
    open: string;
    volume: string;
}

Properties

close: string

Closing price

datetime: string

Timestamp of the data point

high: string

Highest price

low: string

Lowest price

open: string

Opening price

volume: string

Trading volume