@tradejs/strategy-trend-follow 3.0.3-beta.6 → 3.0.3

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 (2) hide show
  1. package/README.md +4 -0
  2. package/package.json +13 -6
package/README.md CHANGED
@@ -57,3 +57,7 @@ image passes. The current verified beta is promoted to one stable `latest`
57
57
  release by the weekly automation; production never consumes prereleases.
58
58
 
59
59
  Keywords: ai, claude, codex.
60
+
61
+ ## Runtime host contract
62
+
63
+ 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/strategy-trend-follow",
3
- "version": "3.0.3-beta.6",
3
+ "version": "3.0.3",
4
4
  "description": "ATR trailing-trend strategy using pivot structure, optional breakout and benchmark filters, and trail or opposite-signal exits for TradeJS.",
5
5
  "type": "module",
6
6
  "packageManager": "yarn@4.13.0",
@@ -13,6 +13,10 @@
13
13
  "strategy",
14
14
  "plugin",
15
15
  "backtesting",
16
+ "crypto",
17
+ "bybit",
18
+ "binance",
19
+ "coinbase",
16
20
  "ai",
17
21
  "claude",
18
22
  "codex"
@@ -40,12 +44,10 @@
40
44
  }
41
45
  },
42
46
  "sideEffects": false,
43
- "dependencies": {
47
+ "devDependencies": {
44
48
  "@tradejs/core": "^3.0.1",
45
49
  "@tradejs/strategy-kit": "^3.0.1",
46
- "@tradejs/types": "^3.0.1"
47
- },
48
- "devDependencies": {
50
+ "@tradejs/types": "^3.0.1",
49
51
  "@types/jest": "^29.5.14",
50
52
  "jest": "^29.7.0",
51
53
  "prettier": "^3.6.2",
@@ -65,5 +67,10 @@
65
67
  "provenance": true
66
68
  },
67
69
  "license": "BUSL-1.1",
68
- "author": "aleksnick (https://github.com/aleksnick)"
70
+ "author": "aleksnick (https://github.com/aleksnick)",
71
+ "peerDependencies": {
72
+ "@tradejs/core": "^3.0.1",
73
+ "@tradejs/strategy-kit": "^3.0.1",
74
+ "@tradejs/types": "^3.0.1"
75
+ }
69
76
  }