UNPKG

crypto-backtest

Version:

Backtesting on market data imported from crypto exchange

11 lines (10 loc) 332 B
import { ICandle } from "./ICandle"; import { IIndicator } from "./IIndicator"; export declare class IndicatorService { static getStart(name: string, options: number[]): number; static execute(options: { candles: ICandle[]; name: string; options: number[]; }): Promise<IIndicator[]>; }