@backtest-kit/pinets 6.16.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.
- package/README.md +3 -1
- package/build/index.cjs +0 -3
- package/build/index.mjs +0 -3
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -12,7 +12,9 @@
|
|
|
12
12
|
|
|
13
13
|
Port your TradingView strategies to backtest-kit with zero rewrite. Powered by [PineTS](https://github.com/QuantForgeOrg/PineTS) - an open-source Pine Script transpiler and runtime.
|
|
14
14
|
|
|
15
|
-
📚 **[Backtest Kit Docs](https://backtest-kit.github.io/documents/
|
|
15
|
+
📚 **[Backtest Kit Docs](https://backtest-kit.github.io/documents/article_07_ai_news_trading_signals.html)** | 🌟 **[GitHub](https://github.com/tripolskypetr/backtest-kit)** | 📜 **[PineTS Docs](https://quantforgeorg.github.io/PineTS/)**
|
|
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/build/index.cjs
CHANGED
|
@@ -131,7 +131,6 @@ const INTERVAL_MINUTES = {
|
|
|
131
131
|
"6h": 360,
|
|
132
132
|
"8h": 480,
|
|
133
133
|
"1d": 1440,
|
|
134
|
-
"1w": 10080,
|
|
135
134
|
};
|
|
136
135
|
const AXIS_SYMBOL = "_AXIS";
|
|
137
136
|
class AxisProviderService {
|
|
@@ -257,8 +256,6 @@ const PINE_TF_MAP = {
|
|
|
257
256
|
"480": "8h",
|
|
258
257
|
"1D": "1d",
|
|
259
258
|
D: "1d",
|
|
260
|
-
"1W": "1w",
|
|
261
|
-
W: "1w",
|
|
262
259
|
};
|
|
263
260
|
const GET_RAW_CANDLES_FN = async (self, symbol, interval, limit, sDate, eDate) => {
|
|
264
261
|
if (ExchangeContextService.hasContext()) {
|
package/build/index.mjs
CHANGED
|
@@ -128,7 +128,6 @@ const INTERVAL_MINUTES = {
|
|
|
128
128
|
"6h": 360,
|
|
129
129
|
"8h": 480,
|
|
130
130
|
"1d": 1440,
|
|
131
|
-
"1w": 10080,
|
|
132
131
|
};
|
|
133
132
|
const AXIS_SYMBOL = "_AXIS";
|
|
134
133
|
class AxisProviderService {
|
|
@@ -254,8 +253,6 @@ const PINE_TF_MAP = {
|
|
|
254
253
|
"480": "8h",
|
|
255
254
|
"1D": "1d",
|
|
256
255
|
D: "1d",
|
|
257
|
-
"1W": "1w",
|
|
258
|
-
W: "1w",
|
|
259
256
|
};
|
|
260
257
|
const GET_RAW_CANDLES_FN = async (self, symbol, interval, limit, sDate, eDate) => {
|
|
261
258
|
if (ExchangeContextService.hasContext()) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backtest-kit/pinets",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.0.0",
|
|
4
4
|
"description": "Run TradingView Pine Script strategies in Node.js self hosted environment. Execute existing Pine Script indicators and generate trading signals with 1:1 syntax compatibility via PineTS runtime.",
|
|
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
|
"pinescript",
|
|
18
18
|
"pine-script",
|
|
@@ -69,11 +69,11 @@
|
|
|
69
69
|
"ts-morph": "27.0.2",
|
|
70
70
|
"tslib": "2.7.0",
|
|
71
71
|
"typedoc": "0.27.9",
|
|
72
|
-
"backtest-kit": "
|
|
72
|
+
"backtest-kit": "7.0.0",
|
|
73
73
|
"worker-testbed": "2.0.0"
|
|
74
74
|
},
|
|
75
75
|
"peerDependencies": {
|
|
76
|
-
"backtest-kit": "^
|
|
76
|
+
"backtest-kit": "^7.0.0",
|
|
77
77
|
"pinets": "^0.9.13",
|
|
78
78
|
"typescript": "^5.0.0"
|
|
79
79
|
},
|