UNPKG

@backtest/framework

Version:

Backtesting trading strategies in TypeScript / JavaScript

8 lines (7 loc) 302 B
import { GetCandles } from '../../types/global'; export declare function getCandleStartDate(symbol: string): Promise<any>; export declare function getBaseQuote(symbol: string): Promise<{ base: any; quote: any; }>; export declare function getCandles(getCandlesParams: GetCandles): Promise<any>;