backtest-kit 1.1.2 → 1.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build/index.cjs CHANGED
@@ -4163,6 +4163,7 @@ class BacktestUtils {
4163
4163
  symbol,
4164
4164
  context,
4165
4165
  });
4166
+ backtest$1.backtestMarkdownService.clear(context.strategyName);
4166
4167
  return backtest$1.backtestGlobalService.run(symbol, context);
4167
4168
  };
4168
4169
  /**
@@ -4327,6 +4328,7 @@ class LiveUtils {
4327
4328
  symbol,
4328
4329
  context,
4329
4330
  });
4331
+ backtest$1.liveMarkdownService.clear(context.strategyName);
4330
4332
  return backtest$1.liveGlobalService.run(symbol, context);
4331
4333
  };
4332
4334
  /**
package/build/index.mjs CHANGED
@@ -4161,6 +4161,7 @@ class BacktestUtils {
4161
4161
  symbol,
4162
4162
  context,
4163
4163
  });
4164
+ backtest$1.backtestMarkdownService.clear(context.strategyName);
4164
4165
  return backtest$1.backtestGlobalService.run(symbol, context);
4165
4166
  };
4166
4167
  /**
@@ -4325,6 +4326,7 @@ class LiveUtils {
4325
4326
  symbol,
4326
4327
  context,
4327
4328
  });
4329
+ backtest$1.liveMarkdownService.clear(context.strategyName);
4328
4330
  return backtest$1.liveGlobalService.run(symbol, context);
4329
4331
  };
4330
4332
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "backtest-kit",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "description": "A TypeScript library for trading system backtest",
5
5
  "author": {
6
6
  "name": "Petr Tripolsky",