export type FundsHistoricalPrices = {
    readonly date: string;
    readonly high: number;
    readonly low: number;
    readonly close: number;
};
