UNPKG

crypto-backtest

Version:

Backtesting on market data imported from crypto exchange

11 lines (10 loc) 295 B
import { BacktestBase } from "./BacktestBase"; import { ICandle } from "./ICandle"; export declare class IdealBacktest extends BacktestBase { constructor(options?: { candles?: ICandle[]; initialBalance?: number; fee?: number; }); execute(): void; }