sbd-npm 1.2.54 → 1.2.55
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/.npmignore +1 -0
- package/constant.js +0 -2
- package/package.json +1 -1
- package/stock_basics.js +0 -7
- package/util.js +0 -7
package/.npmignore
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
sbd-npm.md
|
package/constant.js
CHANGED
@@ -50,8 +50,6 @@ const MenuList = [
|
|
50
50
|
{'key': 'trend_fund_hold', 'name': '基金数持股变化', 'url': '/067740976f85ec14ddae02b51829ce35'},
|
51
51
|
{'key': 'trend_week_minimum', 'name': '周成交低点', 'url': '/722d94429b8e689fe78dca1cf67a4c67'},
|
52
52
|
{'key': 'trend_margin', 'name': '融资融券余额涨幅', 'url': '/1964a6bc56dc3ce6825b23667c7fb588'},
|
53
|
-
{'key': 'trend_down', 'name': '当前连跌个股', 'url': '/07fb907c7e7572fbeae98bacf5c44593'},
|
54
|
-
{'key': 'trend_down_analysis', 'name': '连跌反弹概率', 'url': '/e9a32e4601fca33a9c3b68103f61c3bc'},
|
55
53
|
{'key': 'trend_index_month', 'name': '指数每年月份涨跌', 'url': '/86691e421938098bab7679e43bea67a6'},
|
56
54
|
{'key': 'trend_ma', 'name': '均线近似重合', 'url': '/712e8f604264dd718f5fccd173418b67'},
|
57
55
|
{'key': 'trend_k_compare', 'name': 'K线对比', 'url': '/413957dbd93723d1bad2071da463c551'},
|
package/package.json
CHANGED
package/stock_basics.js
CHANGED
@@ -198,13 +198,6 @@ let Stock = {
|
|
198
198
|
}
|
199
199
|
// 备注
|
200
200
|
let remark_html = [];
|
201
|
-
if (item["down_day"] > 0) {
|
202
|
-
let down_ratio = "";
|
203
|
-
if (item["down_ratio"] > 0) {
|
204
|
-
down_ratio = "(" + item["down_ratio"] + "%)";
|
205
|
-
}
|
206
|
-
remark_html.push("<b class='text-success'>" + item["down_day"] + "天连跌" + down_ratio + "</b>");
|
207
|
-
}
|
208
201
|
if (item["is_down_macd"] === 1) {
|
209
202
|
remark_html.push("<b class='text-success'>MACD 下行</b>");
|
210
203
|
}
|
package/util.js
CHANGED
@@ -2188,13 +2188,6 @@ const Util = {
|
|
2188
2188
|
}
|
2189
2189
|
if ($("#remark_" + code).length) {
|
2190
2190
|
let remark = "";
|
2191
|
-
if (parseInt(item["down_day"]) > 0) {
|
2192
|
-
let down_ratio = "";
|
2193
|
-
if (item["down_ratio"] > 0) {
|
2194
|
-
down_ratio = "(" + item["down_ratio"] + "%)";
|
2195
|
-
}
|
2196
|
-
remark += "<b>" + item["down_day"] + "天连跌" + down_ratio + "</b><br />";
|
2197
|
-
}
|
2198
2191
|
if (parseInt(item["ma_trend"]) > 0) {
|
2199
2192
|
remark += "<b>低于 " + item["ma_trend"] + " 日均线</b><br />";
|
2200
2193
|
}
|