crypto-backtest
Version:
Backtesting on market data imported from crypto exchange
19 lines (18 loc) • 435 B
TypeScript
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[];
}