sbd-npm 1.2.50 → 1.2.51

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/stock_basics.js +0 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sbd-npm",
3
- "version": "1.2.50",
3
+ "version": "1.2.51",
4
4
  "description": "Stock Big Data",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/stock_basics.js CHANGED
@@ -298,9 +298,6 @@ let Stock = {
298
298
  hist_low_price = item["low"];
299
299
  }
300
300
  hist_high_price = Math.max(hist_high_price, item["high"]);
301
- if (hist_type === "week") {
302
- item["date"] += Util.one_day_second * 5 - 1;
303
- }
304
301
  total_amount += item["amount"];
305
302
  total_volume += item["volume"] * 100;
306
303
  _html.push("<tr>");