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.
- package/package.json +1 -1
- package/stock_basics.js +0 -3
package/package.json
CHANGED
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>");
|