@tradejs/base 3.1.0 → 3.1.1-beta.2
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 +11 -0
- package/package.json +38 -7
package/README.md
CHANGED
|
@@ -52,3 +52,14 @@ If you only need the built-in catalog, `defineConfig(basePreset)` is enough.
|
|
|
52
52
|
The source of truth for the preset is this repository. Strategy implementation
|
|
53
53
|
changes belong to their individual repositories and do not require a TradeJS
|
|
54
54
|
engine commit.
|
|
55
|
+
|
|
56
|
+
Package publishing is beta-first. Relevant pushes publish a unique prerelease
|
|
57
|
+
and validate it in the production-like Project image. Weekly automation alone
|
|
58
|
+
promotes the current verified beta to stable `latest`; the Project batches all
|
|
59
|
+
new stable TradeJS packages into one production image later that morning.
|
|
60
|
+
|
|
61
|
+
Keywords: ai, claude, codex.
|
|
62
|
+
|
|
63
|
+
## Runtime host contract
|
|
64
|
+
|
|
65
|
+
All `@tradejs/*` runtime packages are peer dependencies. The consuming TradeJS Project owns their exact installed versions and package manifest, so this package never loads a hidden nested engine, types package, indicator package, or Strategy Kit. Repository builds use matching dev dependencies only.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tradejs/base",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.1-beta.2",
|
|
4
4
|
"description": "Default TradeJS preset wiring the public strategy, indicator, connector, and runtime packages.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"packageManager": "yarn@4.13.0",
|
|
@@ -13,7 +13,14 @@
|
|
|
13
13
|
"backtesting",
|
|
14
14
|
"preset",
|
|
15
15
|
"starter",
|
|
16
|
-
"plugins"
|
|
16
|
+
"plugins",
|
|
17
|
+
"crypto",
|
|
18
|
+
"bybit",
|
|
19
|
+
"binance",
|
|
20
|
+
"coinbase",
|
|
21
|
+
"ai",
|
|
22
|
+
"claude",
|
|
23
|
+
"codex"
|
|
17
24
|
],
|
|
18
25
|
"homepage": "https://tradejs.dev",
|
|
19
26
|
"repository": {
|
|
@@ -37,7 +44,7 @@
|
|
|
37
44
|
}
|
|
38
45
|
},
|
|
39
46
|
"sideEffects": false,
|
|
40
|
-
"
|
|
47
|
+
"devDependencies": {
|
|
41
48
|
"@tradejs/connectors": "^3.0.1",
|
|
42
49
|
"@tradejs/core": "^3.0.1",
|
|
43
50
|
"@tradejs/indicators": "^3.0.1",
|
|
@@ -61,9 +68,7 @@
|
|
|
61
68
|
"@tradejs/strategy-trend-line": "^3.0.0",
|
|
62
69
|
"@tradejs/strategy-trend-shift": "^3.0.0",
|
|
63
70
|
"@tradejs/strategy-volatility-compression-breakout": "^3.0.0",
|
|
64
|
-
"@tradejs/strategy-volume-divergence": "^3.0.0"
|
|
65
|
-
},
|
|
66
|
-
"devDependencies": {
|
|
71
|
+
"@tradejs/strategy-volume-divergence": "^3.0.0",
|
|
67
72
|
"@types/jest": "^29.5.14",
|
|
68
73
|
"jest": "^29.7.0",
|
|
69
74
|
"prettier": "^3.6.2",
|
|
@@ -83,5 +88,31 @@
|
|
|
83
88
|
"provenance": true
|
|
84
89
|
},
|
|
85
90
|
"license": "BUSL-1.1",
|
|
86
|
-
"author": "aleksnick (https://github.com/aleksnick)"
|
|
91
|
+
"author": "aleksnick (https://github.com/aleksnick)",
|
|
92
|
+
"peerDependencies": {
|
|
93
|
+
"@tradejs/connectors": "^3.0.1",
|
|
94
|
+
"@tradejs/core": "^3.0.1",
|
|
95
|
+
"@tradejs/indicators": "^3.0.1",
|
|
96
|
+
"@tradejs/node": "^3.0.1",
|
|
97
|
+
"@tradejs/strategy-adaptive-momentum-ribbon": "^3.0.0",
|
|
98
|
+
"@tradejs/strategy-adaptive-trend-channel": "^3.0.0",
|
|
99
|
+
"@tradejs/strategy-breakout": "^3.0.0",
|
|
100
|
+
"@tradejs/strategy-cup-and-handle": "^3.0.0",
|
|
101
|
+
"@tradejs/strategy-double-tap": "^3.0.0",
|
|
102
|
+
"@tradejs/strategy-grid": "^3.0.0",
|
|
103
|
+
"@tradejs/strategy-grid-classic": "^3.0.0",
|
|
104
|
+
"@tradejs/strategy-head-and-shoulders": "^3.0.0",
|
|
105
|
+
"@tradejs/strategy-hyperliquid-consensus": "^3.0.0",
|
|
106
|
+
"@tradejs/strategy-liquidity-tails": "^3.0.0",
|
|
107
|
+
"@tradejs/strategy-liquidity-zones": "^3.0.0",
|
|
108
|
+
"@tradejs/strategy-ma-strategy": "^3.0.0",
|
|
109
|
+
"@tradejs/strategy-market-flush-reversal": "^3.0.0",
|
|
110
|
+
"@tradejs/strategy-relative-rotation": "^3.0.0",
|
|
111
|
+
"@tradejs/strategy-structure-zones": "^3.0.0",
|
|
112
|
+
"@tradejs/strategy-trend-follow": "^3.0.0",
|
|
113
|
+
"@tradejs/strategy-trend-line": "^3.0.0",
|
|
114
|
+
"@tradejs/strategy-trend-shift": "^3.0.0",
|
|
115
|
+
"@tradejs/strategy-volatility-compression-breakout": "^3.0.0",
|
|
116
|
+
"@tradejs/strategy-volume-divergence": "^3.0.0"
|
|
117
|
+
}
|
|
87
118
|
}
|