@backtest-kit/sidekick 6.16.0 → 7.1.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/README.md +5 -3
- package/package.json +2 -2
- package/template/package.mustache +5 -4
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
[](https://npmjs.org/package/@backtest-kit/sidekick)
|
|
9
9
|
[](https://github.com/tripolskypetr/backtest-kit/blob/master/LICENSE)
|
|
10
10
|
|
|
11
|
-
📚 **[Backtest Kit Docs](https://backtest-kit.github.io/documents/
|
|
11
|
+
📚 **[Backtest Kit Docs](https://backtest-kit.github.io/documents/article_07_ai_news_trading_signals.html)** | 🌟 **[GitHub](https://github.com/tripolskypetr/backtest-kit)**
|
|
12
12
|
|
|
13
13
|
## ✨ Features
|
|
14
14
|
|
|
@@ -24,6 +24,8 @@
|
|
|
24
24
|
|
|
25
25
|
## 🚀 Quick Start
|
|
26
26
|
|
|
27
|
+
> **New to backtest-kit?** The fastest way to get a real, production-ready setup is to clone the [reference implementation](https://github.com/tripolskypetr/backtest-kit/tree/master/example) — a fully working news-sentiment AI trading system with LLM forecasting, multi-timeframe data, and a documented February 2026 backtest. Start there instead of from scratch.
|
|
28
|
+
|
|
27
29
|
### Create a New Project
|
|
28
30
|
|
|
29
31
|
```bash
|
|
@@ -157,10 +159,10 @@ npx -y @backtest-kit/sidekick .
|
|
|
157
159
|
|
|
158
160
|
## 🔗 Links
|
|
159
161
|
|
|
160
|
-
- [Backtest Kit Documentation](https://backtest-kit.github.io/documents/
|
|
162
|
+
- [Backtest Kit Documentation](https://backtest-kit.github.io/documents/article_07_ai_news_trading_signals.html)
|
|
161
163
|
- [GitHub Repository](https://github.com/tripolskypetr/backtest-kit)
|
|
162
164
|
- [Demo Projects](https://github.com/tripolskypetr/backtest-kit/tree/master/demo)
|
|
163
|
-
- [API Reference](https://backtest-kit.github.io/documents/
|
|
165
|
+
- [API Reference](https://backtest-kit.github.io/documents/article_07_ai_news_trading_signals.html)
|
|
164
166
|
|
|
165
167
|
## 🤝 Contribute
|
|
166
168
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backtest-kit/sidekick",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.1.0",
|
|
4
4
|
"description": "The easiest way to create a new Backtest Kit trading bot project. Like create-react-app, but for algorithmic trading with LLM integration and technical analysis.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Petr Tripolsky",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"url": "http://paypal.me/tripolskypetr"
|
|
13
13
|
},
|
|
14
14
|
"license": "MIT",
|
|
15
|
-
"homepage": "https://backtest-kit.github.io/documents/
|
|
15
|
+
"homepage": "https://backtest-kit.github.io/documents/article_07_ai_news_trading_signals.html",
|
|
16
16
|
"keywords": [
|
|
17
17
|
"create-backtest-app",
|
|
18
18
|
"backtest-kit",
|
|
@@ -4,18 +4,19 @@
|
|
|
4
4
|
"private": true,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Backtest Kit trading bot project",
|
|
7
|
+
"homepage": "https://backtest-kit.github.io/documents/article_07_ai_news_trading_signals.html",
|
|
7
8
|
"scripts": {
|
|
8
9
|
"start": "node ./src/index.mjs --backtest"
|
|
9
10
|
},
|
|
10
11
|
"dependencies": {
|
|
11
|
-
"@backtest-kit/ollama": "^
|
|
12
|
-
"@backtest-kit/pinets": "^
|
|
13
|
-
"@backtest-kit/ui": "^
|
|
12
|
+
"@backtest-kit/ollama": "^7.1.0",
|
|
13
|
+
"@backtest-kit/pinets": "^7.1.0",
|
|
14
|
+
"@backtest-kit/ui": "^7.1.0",
|
|
14
15
|
"@huggingface/inference": "^4.7.1",
|
|
15
16
|
"@langchain/core": "^0.3.57",
|
|
16
17
|
"@langchain/xai": "^0.0.2",
|
|
17
18
|
"agent-swarm-kit": "^2.5.1",
|
|
18
|
-
"backtest-kit": "^
|
|
19
|
+
"backtest-kit": "^7.1.0",
|
|
19
20
|
"ccxt": "^4.4.41",
|
|
20
21
|
"dotenv": "^16.4.7",
|
|
21
22
|
"functools-kit": "^2.2.0",
|