@backtest/framework
Version:
Backtesting trading strategies in TypeScript / JavaScript
7 lines (6 loc) • 374 B
TypeScript
import { getCandles } from '../../helpers/prisma-historical-data';
import { MetaCandle } from '../../helpers/interfaces';
export declare function findHistoricalDataNames(): Promise<string[]>;
export declare function findHistoricalDataSets(): Promise<MetaCandle[]>;
export declare function findHistoricalData(name: string): Promise<MetaCandle | null>;
export { getCandles };