sbd-npm 1.1.5 → 1.1.6

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/package.json +1 -1
  2. package/summary_daily.js +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sbd-npm",
3
- "version": "1.1.5",
3
+ "version": "1.1.6",
4
4
  "description": "Stock Big Data",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/summary_daily.js CHANGED
@@ -131,7 +131,9 @@ $(document).ready(function () {
131
131
  stock_rate_html.push(_pack_stock_rate("-7% ~ -5%", pr["r7_5"], "bg-green"));
132
132
  stock_rate_html.push(_pack_stock_rate("-10% ~ -7%", pr["r10_7"], "bg-green"));
133
133
  $("#stock_rate_bar").html(stock_rate_html.join(""));
134
+ $("#rate_up").html(pr["r0_3"] + pr["r3_5"] + pr["r5_7"] + pr["r7_10"]);
134
135
  $("#rate_up_limit").html(pr["r10"]);
136
+ $("#rate_down").html(pr["r10_7"] + pr["r7_5"] + pr["r5_3"] + pr["r3_0"]);
135
137
  $("#rate_down_limit").html(pr["r_10"]);
136
138
  },
137
139