Interface FormattedOHLCV

Formatted OHLCV interface

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

Properties

close: string
datetime: string
high: string
low: string
open: string
volume: string