@backtest-kit/ollama 6.15.0 → 7.0.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.
Files changed (3) hide show
  1. package/README.md +3 -1
  2. package/package.json +5 -5
  3. package/types.d.ts +1 -1
package/README.md CHANGED
@@ -12,7 +12,9 @@
12
12
 
13
13
  Transform technical analysis into trading decisions with multi-provider LLM support, structured output, and built-in risk management.
14
14
 
15
- 📚 **[Backtest Kit Docs](https://backtest-kit.github.io/documents/example_02_first_backtest.html)** | 🌟 **[GitHub](https://github.com/tripolskypetr/backtest-kit)**
15
+ 📚 **[Backtest Kit Docs](https://backtest-kit.github.io/documents/article_07_ai_news_trading_signals.html)** | 🌟 **[GitHub](https://github.com/tripolskypetr/backtest-kit)**
16
+
17
+ > **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.
16
18
 
17
19
  ## ✨ Features
18
20
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backtest-kit/ollama",
3
- "version": "6.15.0",
3
+ "version": "7.0.0",
4
4
  "description": "Multi-provider LLM inference library for AI-powered trading strategies. Supports 10+ providers including OpenAI, Claude, DeepSeek, Grok, Mistral with unified API and automatic token rotation.",
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/example_02_first_backtest.html",
15
+ "homepage": "https://backtest-kit.github.io/documents/article_07_ai_news_trading_signals.html",
16
16
  "keywords": [
17
17
  "llm",
18
18
  "openai",
@@ -81,21 +81,21 @@
81
81
  "ts-morph": "27.0.2",
82
82
  "tslib": "2.7.0",
83
83
  "typedoc": "0.27.9",
84
- "backtest-kit": "6.15.0",
84
+ "backtest-kit": "7.0.0",
85
85
  "worker-testbed": "2.0.0"
86
86
  },
87
87
  "peerDependencies": {
88
88
  "@huggingface/inference": "^4.7.1",
89
89
  "@langchain/core": "^0.3.57",
90
90
  "@langchain/xai": "^0.0.2",
91
- "backtest-kit": "^6.15.0",
91
+ "backtest-kit": "^7.0.0",
92
92
  "groq-sdk": "^0.37.0",
93
93
  "ollama": "^0.6.0",
94
94
  "openai": "^4.97.0",
95
95
  "typescript": "^5.0.0"
96
96
  },
97
97
  "dependencies": {
98
- "agent-swarm-kit": "^2.5.0",
98
+ "agent-swarm-kit": "^2.5.1",
99
99
  "di-kit": "^1.1.1",
100
100
  "di-scoped": "^1.0.21",
101
101
  "functools-kit": "^2.2.0",
package/types.d.ts CHANGED
@@ -663,7 +663,7 @@ declare function commitPrompt(source: Module | Prompt, history: MessageModel[]):
663
663
  /**
664
664
  * Candle interval type for trading timeframes.
665
665
  */
666
- type CandleInterval = "1m" | "3m" | "5m" | "15m" | "30m" | "1h" | "2h" | "4h" | "6h" | "8h" | "12h" | "1d" | "3d" | "1w" | "1M";
666
+ type CandleInterval = "1m" | "3m" | "5m" | "15m" | "30m" | "1h" | "2h" | "4h" | "6h" | "8h" | "12h" | "1d";
667
667
  /**
668
668
  * Unique string identifier for registered exchanges.
669
669
  */