/** * Prices for period of time (a bar of data). */ export interface OHLC { open: number; high: number; low: number; close: number; }