Const
Singleton instance of CronUtils for registering periodic tasks coordinated across parallel Backtest.background runs.
Backtest.background
import { Cron } from "backtest-kit";Cron.register({ name: "tg-parser", interval: "1h", handler: async (info) => { ... },}); Copy
import { Cron } from "backtest-kit";Cron.register({ name: "tg-parser", interval: "1h", handler: async (info) => { ... },});
Singleton instance of CronUtils for registering periodic tasks coordinated across parallel
Backtest.backgroundruns.