@kamuira/stock-analyzer 1.2.1 → 1.2.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 +4 -0
- package/package.json +9 -1
package/README.md
CHANGED
|
@@ -237,6 +237,10 @@ stock-backtest all # 回测全部关注列表
|
|
|
237
237
|
|
|
238
238
|
## 更新日志
|
|
239
239
|
|
|
240
|
+
### v1.2.2
|
|
241
|
+
- `package.json` 加 `repository` / `homepage` / `bugs` 字段
|
|
242
|
+
- 源码托管在 GitHub:https://github.com/guiwzh/stock-analyzer
|
|
243
|
+
|
|
240
244
|
### v1.2.1
|
|
241
245
|
- 加 `--trailing` / `--trailing-atr` / `--no-tp1` 三个回测参数
|
|
242
246
|
- Chandelier Exit 实现(跟踪止损 = peak − N × ATR)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kamuira/stock-analyzer",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.2",
|
|
4
4
|
"preferGlobal": true,
|
|
5
5
|
"description": "A股/台股综合技术分析工具 - 支持实时分析、回测验证、买卖建议",
|
|
6
6
|
"main": "server.js",
|
|
@@ -28,6 +28,14 @@
|
|
|
28
28
|
],
|
|
29
29
|
"author": "guiwzh",
|
|
30
30
|
"license": "MIT",
|
|
31
|
+
"homepage": "https://github.com/guiwzh/stock-analyzer#readme",
|
|
32
|
+
"bugs": {
|
|
33
|
+
"url": "https://github.com/guiwzh/stock-analyzer/issues"
|
|
34
|
+
},
|
|
35
|
+
"repository": {
|
|
36
|
+
"type": "git",
|
|
37
|
+
"url": "git+https://github.com/guiwzh/stock-analyzer.git"
|
|
38
|
+
},
|
|
31
39
|
"files": [
|
|
32
40
|
"bin/",
|
|
33
41
|
"server.js",
|