export interface OHLC {
    open: number;
    high: number;
    low: number;
    close: number;
    volume: number;
    timestamp?: number;
}
