@vulcan-js/indicators 0.0.1 → 0.0.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 +1 -0
- package/package.json +14 -2
package/README.md
CHANGED
|
@@ -56,6 +56,7 @@ process(98)
|
|
|
56
56
|
| Moving Max | `mmax` | `movingMax` |
|
|
57
57
|
| Moving Min | `mmin` | `movingMin` |
|
|
58
58
|
| Moving Sum | `msum` | — |
|
|
59
|
+
| Parabolic SAR | `psar` | `parabolicSar` |
|
|
59
60
|
| Rolling Moving Average | `rma` | `rollingMovingAverage` |
|
|
60
61
|
| Simple Moving Average | `sma` | `simpleMovingAverage` |
|
|
61
62
|
| Triangular Moving Average | `trima` | `triangularMovingAverage` |
|
package/package.json
CHANGED
|
@@ -1,13 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vulcan-js/indicators",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.2",
|
|
5
|
+
"description": "Technical analysis indicators with generator-based streaming and high-precision arithmetic",
|
|
5
6
|
"license": "MIT",
|
|
6
7
|
"repository": {
|
|
7
8
|
"type": "git",
|
|
8
9
|
"url": "https://github.com/material-tech/vulcan",
|
|
9
10
|
"directory": "packages/indicators"
|
|
10
11
|
},
|
|
12
|
+
"keywords": [
|
|
13
|
+
"technical-analysis",
|
|
14
|
+
"indicators",
|
|
15
|
+
"sma",
|
|
16
|
+
"ema",
|
|
17
|
+
"rsi",
|
|
18
|
+
"macd",
|
|
19
|
+
"trading",
|
|
20
|
+
"generator",
|
|
21
|
+
"streaming"
|
|
22
|
+
],
|
|
11
23
|
"exports": {
|
|
12
24
|
".": "./dist/index.js",
|
|
13
25
|
"./package.json": "./package.json"
|
|
@@ -18,7 +30,7 @@
|
|
|
18
30
|
],
|
|
19
31
|
"dependencies": {
|
|
20
32
|
"dnum": "^2.17.0",
|
|
21
|
-
"@vulcan-js/core": "^0.0.
|
|
33
|
+
"@vulcan-js/core": "^0.0.2"
|
|
22
34
|
},
|
|
23
35
|
"devDependencies": {
|
|
24
36
|
"defu": "^6.1.4",
|