Variable CronConst

Cron: CronUtils

Singleton instance of CronUtils for registering periodic tasks coordinated across parallel Backtest.background runs.

import { Cron } from "backtest-kit";

Cron.register({
name: "tg-parser",
interval: "1h",
handler: async (info) => { ... },
});