UNPKG

crypto-backtest

Version:

Backtesting on market data imported from crypto exchange

19 lines (18 loc) 435 B
import { ICandle } from "./ICandle"; export declare class StrategyExecuteData { time: string; candle: ICandle; indicators: Array<{ key: string; outputs: number[]; }>; constructor(options: { time: string; candle: ICandle; indicators: Array<{ key: string; outputs: number[]; }>; }); indicator(key: string): number[]; }