@backtest-kit/cli 5.5.3 → 5.6.0

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
@@ -91,7 +91,7 @@ var BacktestKitSignals__namespace = /*#__PURE__*/_interopNamespaceDefault(Backte
91
91
  BacktestKit.Notification.enable();
92
92
  }
93
93
  {
94
- BacktestKit.Markdown.disable();
94
+ BacktestKit.Markdown.enable();
95
95
  BacktestKit.Report.enable();
96
96
  }
97
97
  {
@@ -102,6 +102,9 @@ var BacktestKitSignals__namespace = /*#__PURE__*/_interopNamespaceDefault(Backte
102
102
  BacktestKit.NotificationLive.usePersist();
103
103
  BacktestKit.NotificationBacktest.useMemory();
104
104
  }
105
+ {
106
+ BacktestKit.Markdown.useDummy();
107
+ }
105
108
  BacktestKit.setConfig({
106
109
  CC_MAX_NOTIFICATIONS: 5000,
107
110
  CC_MAX_SIGNALS: 750,
package/build/index.mjs CHANGED
@@ -65,7 +65,7 @@ import * as BacktestKitSignals from '@backtest-kit/signals';
65
65
  Notification.enable();
66
66
  }
67
67
  {
68
- Markdown.disable();
68
+ Markdown.enable();
69
69
  Report.enable();
70
70
  }
71
71
  {
@@ -76,6 +76,9 @@ import * as BacktestKitSignals from '@backtest-kit/signals';
76
76
  NotificationLive.usePersist();
77
77
  NotificationBacktest.useMemory();
78
78
  }
79
+ {
80
+ Markdown.useDummy();
81
+ }
79
82
  setConfig({
80
83
  CC_MAX_NOTIFICATIONS: 5000,
81
84
  CC_MAX_SIGNALS: 750,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backtest-kit/cli",
3
- "version": "5.5.3",
3
+ "version": "5.6.0",
4
4
  "description": "Zero-boilerplate CLI runner for backtest-kit strategies. Run backtests, paper trading, and live bots with candle cache warming, web dashboard, and Telegram notifications — no setup code required.",
5
5
  "author": {
6
6
  "name": "Petr Tripolsky",
@@ -60,11 +60,11 @@
60
60
  "devDependencies": {
61
61
  "@babel/plugin-transform-modules-umd": "7.27.1",
62
62
  "@babel/standalone": "7.29.1",
63
- "@backtest-kit/ui": "5.5.3",
64
- "@backtest-kit/graph": "5.5.3",
65
- "@backtest-kit/ollama": "5.5.3",
66
- "@backtest-kit/pinets": "5.5.3",
67
- "@backtest-kit/signals": "5.5.3",
63
+ "@backtest-kit/ui": "5.6.0",
64
+ "@backtest-kit/graph": "5.6.0",
65
+ "@backtest-kit/ollama": "5.6.0",
66
+ "@backtest-kit/pinets": "5.6.0",
67
+ "@backtest-kit/signals": "5.6.0",
68
68
  "@rollup/plugin-replace": "6.0.3",
69
69
  "@rollup/plugin-typescript": "11.1.6",
70
70
  "@types/image-size": "0.7.0",
@@ -72,7 +72,7 @@
72
72
  "@types/mustache": "4.2.6",
73
73
  "@types/node": "22.9.0",
74
74
  "@types/stack-trace": "0.0.33",
75
- "backtest-kit": "5.5.3",
75
+ "backtest-kit": "5.6.0",
76
76
  "glob": "11.0.1",
77
77
  "markdown-it": "14.1.1",
78
78
  "rimraf": "6.0.1",
@@ -87,12 +87,12 @@
87
87
  "peerDependencies": {
88
88
  "@babel/plugin-transform-modules-umd": "^7.27.1",
89
89
  "@babel/standalone": "^7.29.1",
90
- "@backtest-kit/ui": "^5.5.3",
91
- "@backtest-kit/graph": "^5.5.3",
92
- "@backtest-kit/ollama": "^5.5.3",
93
- "@backtest-kit/pinets": "^5.5.3",
94
- "@backtest-kit/signals": "^5.5.3",
95
- "backtest-kit": "^5.5.3",
90
+ "@backtest-kit/ui": "^5.6.0",
91
+ "@backtest-kit/graph": "^5.6.0",
92
+ "@backtest-kit/ollama": "^5.6.0",
93
+ "@backtest-kit/pinets": "^5.6.0",
94
+ "@backtest-kit/signals": "^5.6.0",
95
+ "backtest-kit": "^5.6.0",
96
96
  "markdown-it": "^14.1.1",
97
97
  "typescript": "^5.0.0"
98
98
  },