interface OhlcData {
    close: number[];
    customdata: any[];
    decreasing: {
        line?: {
            color?: string;
            dash?: Dash;
            width?: number;
        };
    };
    high: number[];
    hoverinfo: HoverInfo;
    hoverlabel: {
        align?: "auto" | "left" | "right";
        bgcolor?: string | string[];
        bordercolor?: string | string[];
        font?: {
            color?: string | string[];
            family?: string | string[];
            size?: number;
        };
        namelength?: number | number[];
        split?: boolean;
    };
    hovertext: string | string[];
    ids: string[];
    increasing: {
        line?: {
            color?: string;
            dash?: Dash;
            width?: number;
        };
    };
    legendgroup: string;
    line: {
        dash: Dash;
        width: number;
    };
    low: number[];
    meta: any;
    name: string;
    opacity: number;
    open: number[];
    selectedpoints: any;
    showlegend: boolean;
    text: string | string[];
    tickwidth: number;
    type: "ohlc";
    uirevision: any;
    visible: boolean | "legendonly";
    x: string[];
    xaxis: string;
    xcalendar: XCalendar;
    xperiod: any;
    xperiod0: any;
    xperiodalignment: "middle" | "end" | "start";
    yaxis: string;
}

Properties

close: number[]
customdata: any[]
decreasing: {
    line?: {
        color?: string;
        dash?: Dash;
        width?: number;
    };
}
high: number[]
hoverinfo: HoverInfo
hoverlabel: {
    align?: "auto" | "left" | "right";
    bgcolor?: string | string[];
    bordercolor?: string | string[];
    font?: {
        color?: string | string[];
        family?: string | string[];
        size?: number;
    };
    namelength?: number | number[];
    split?: boolean;
}
hovertext: string | string[]
ids: string[]
increasing: {
    line?: {
        color?: string;
        dash?: Dash;
        width?: number;
    };
}
legendgroup: string
line: {
    dash: Dash;
    width: number;
}
low: number[]
meta: any
name: string
opacity: number
open: number[]
selectedpoints: any
showlegend: boolean
text: string | string[]
tickwidth: number
type
uirevision: any
visible: boolean | "legendonly"
x: string[]
xaxis: string
xcalendar: XCalendar
xperiod: any
xperiod0: any
xperiodalignment: "middle" | "end" | "start"
yaxis: string