Constimport { Strategy } from "backtest-kit";
// Usage same as StrategyUtils methods
const stats = await Strategy.getData("BTCUSDT", { strategyName: "my-strategy", exchangeName: "binance", frameName: "1h" });
const report = await Strategy.getReport("BTCUSDT", { strategyName: "my-strategy", exchangeName: "binance", frameName: "1h" });
await Strategy.dump("BTCUSDT", { strategyName: "my-strategy", exchangeName: "binance", frameName: "1h" });
Global singleton instance of StrategyUtils. Provides static-like access to strategy management reporting methods.