sbd-npm 1.3.79 → 1.3.81

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 +22 -19
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sbd-npm",
3
- "version": "1.3.79",
3
+ "version": "1.3.81",
4
4
  "description": "Stock Big Data",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/stock_basics.js CHANGED
@@ -1044,10 +1044,7 @@ let Stock = {
1044
1044
  */
1045
1045
  fetch_margin: function () {
1046
1046
  Stock["rzye_chart"] = Util.show_chart_loading(Stock["rzye_chart"], "rzye_line_canvas");
1047
- let margin_url = "http://www.szse.cn/disclosure/margin/margin/index.html";
1048
- if (Util.is_sh(Stock["code"])) {
1049
- margin_url = "http://www.sse.com.cn/market/othersdata/margin/detail/";
1050
- }
1047
+ let margin_url = "https://data.10jqka.com.cn/market/rzrqgg/code/" + Stock["code"];
1051
1048
  $("#margin_panel_title").html(Util.pack_html_link(margin_url, "[" + Stock.name + "]融资余额"));
1052
1049
  let payload = {
1053
1050
  action: "margin",
@@ -1142,12 +1139,14 @@ let Stock = {
1142
1139
  "caption": "none",
1143
1140
  "head_cols": [
1144
1141
  {"name": "日期", "class": "info", "table_sort": 1},
1145
- {"name": "融资余额", "table_sort": 1},
1146
- {"name": "融资余额增值", "table_sort": 1, "title": "当天融资余额跟前一天融资余额的差值"},
1142
+ {"name": "融资余额", "table_sort": 1, "title": "本日融资余额 = 前日融资余额 + 本日融资买入额 - 本日融资偿还额"},
1147
1143
  {"name": "融资买入额", "table_sort": 1},
1148
- {"name": "融资偿还额", "table_sort": 1},
1149
- {"name": "融券余额", "table_sort": 1},
1150
- {"name": "融券余量", "table_sort": 1},
1144
+ {"name": "融资偿还额", "table_sort": 1, "title": "本日融资偿还额 = 本日直接还款额 + 本日卖券还款额 + 本日融资强制平仓额 + 本日融资正权益调整 - 本日融资负权益调整"},
1145
+ {"name": "融资净买入", "table_sort": 1, "title": "本日融资买入额 - 本日融资偿还额"},
1146
+ {"name": "融券余额", "table_sort": 1, "title": "本日融资融券余额 = 本日融资余额 + 本日融券余量金额"},
1147
+ {"name": "融券余量", "table_sort": 1, "title": "本日融券余量 = 前日融券余量 + 本日融券卖出数量 - 本日融券偿还量"},
1148
+ {"name": "收盘价", "table_sort": 1},
1149
+ {"name": "涨跌", "table_sort": 1},
1151
1150
  ]
1152
1151
  });
1153
1152
  Util.post("/stock/" + Stock["code"], {action: "margin_detail"}, function (j) {
@@ -1156,6 +1155,8 @@ let Stock = {
1156
1155
  _html.push("<tr>");
1157
1156
  _html.push("<td>", Util.seconds_to_format(item["date"], "%Y-%m-%d"), "</td>");
1158
1157
  _html.push("<td title='", item["rzye"], "' data-val='", item["rzye"], "'>", Util.to_unit(item["rzye"], 3), "</td>");
1158
+ _html.push("<td title='", item["rzmre"], "' data-val='", item["rzmre"], "'>", Util.to_unit(item["rzmre"], 3), "</td>");
1159
+ _html.push("<td title='", item["rzche"], "' data-val='", item["rzche"], "'>", Util.to_unit(item["rzche"], 3), "</td>");
1159
1160
  let net_rzye = "--", gap_rzye = 0;
1160
1161
  if (j["data"][index + 1] && j["data"][index + 1]["rzye"]) {
1161
1162
  gap_rzye = item["rzye"] - j["data"][index + 1]["rzye"];
@@ -1166,22 +1167,24 @@ let Stock = {
1166
1167
  }
1167
1168
  }
1168
1169
  _html.push("<td title='", gap_rzye, "' data-val='", gap_rzye, "'>", net_rzye, "</td>");
1169
- _html.push("<td title='", item["rzmre"], "' data-val='", item["rzmre"], "'>", Util.to_unit(item["rzmre"], 3), "</td>");
1170
- _html.push("<td title='", item["rzche"], "' data-val='", item["rzche"], "'>", Util.to_unit(item["rzche"], 3), "</td>");
1171
1170
  _html.push("<td title='", item["rqye"], "' data-val='", item["rqye"], "'>", (item["rqye"] > 0 ? Util.to_unit(item["rqye"], 3) : "--"), "</td>");
1172
1171
  _html.push("<td title='", item["rqyl"], "' data-val='", item["rqyl"], "'>", Util.to_unit(item["rqyl"], 3), "</td>");
1172
+ let text_color = Util.text_color(item["p_change"]);
1173
+ _html.push("<td><b class='", text_color, "'>", item["close"], "</b></td>");
1174
+ item["p_change"] = item["p_change"] > 0 ? ("+" + Util.to_float(item["p_change"], 2)) : Util.to_float(item["p_change"], 2);
1175
+ _html.push("<td><b class='", text_color, "'>", item["p_change"], "%</b></td>");
1173
1176
  _html.push("</tr>");
1174
1177
  });
1175
1178
  Util.render_table_html("margin_modal_body_body", _html);
1176
1179
  if (j["data"].length > 1) {
1177
- let margin_modal_summary = " (当前最新的融资余额<b class='text-info'>(" + Util.to_unit(j["data"][0]["rzye"]) + ")</b>";
1180
+ let margin_modal_summary = " [当前最新(" + Util.seconds_to_format(j["data"][0]["date"], "%Y-%m-%d") + ")的融资余额: <b class='text-info'>" + Util.to_unit(j["data"][0]["rzye"]) + "</b>";
1178
1181
  let gap_rzye = j["data"][0]["rzye"] - j["data"][1]["rzye"];
1179
1182
  if (gap_rzye > 0) {
1180
- margin_modal_summary += "相对于前一天持股增加 <b class='text-danger'>+" + Util.to_unit(gap_rzye) + "</b>";
1183
+ margin_modal_summary += ",相对于前一天余额增加 <b class='text-danger'>+" + Util.to_unit(gap_rzye) + "</b>";
1181
1184
  } else if (gap_rzye < 0) {
1182
- margin_modal_summary += "相对于前一天持股减少 <b class='text-success'>" + Util.to_unit(gap_rzye) + "</b>";
1185
+ margin_modal_summary += ",相对于前一天余额减少 <b class='text-success'>" + Util.to_unit(gap_rzye) + "</b>";
1183
1186
  }
1184
- margin_modal_summary += ")";
1187
+ margin_modal_summary += "]";
1185
1188
  $("#margin_modal_summary").html(margin_modal_summary);
1186
1189
  }
1187
1190
  Util.hide_tips();
@@ -1287,14 +1290,14 @@ let Stock = {
1287
1290
  _html.push("</tr>");
1288
1291
  });
1289
1292
  if (j["data"].length > 1) {
1290
- let hkex_holding_modal_summary = " (当前最新的持股比例<b class='text-info'>(" + j["data"][0]["ratio"] + "%)</b>";
1293
+ let hkex_holding_modal_summary = " [当前最新(" + Util.seconds_to_format(j["data"][0]["date"], "%Y-%m-%d") + ")的持股比例: <b class='text-info'>" + j["data"][0]["ratio"] + "%</b>";
1291
1294
  let gap_volume = j["data"][0]["volume"] - j["data"][1]["volume"];
1292
1295
  if (gap_volume > 0) {
1293
- hkex_holding_modal_summary += "相对于前一天持股增加 <b class='text-danger'>+" + Util.to_ten_thousand(gap_volume) + "万股</b>";
1296
+ hkex_holding_modal_summary += ",相对于前一天持股增加 <b class='text-danger'>+" + Util.to_ten_thousand(gap_volume) + "万股</b>";
1294
1297
  } else if (gap_volume < 0) {
1295
- hkex_holding_modal_summary += "相对于前一天持股减少 <b class='text-success'>" + Util.to_ten_thousand(gap_volume) + "万股</b>";
1298
+ hkex_holding_modal_summary += ",相对于前一天持股减少 <b class='text-success'>" + Util.to_ten_thousand(gap_volume) + "万股</b>";
1296
1299
  }
1297
- hkex_holding_modal_summary += ")";
1300
+ hkex_holding_modal_summary += "]";
1298
1301
  $("#hkex_holding_modal_summary").html(hkex_holding_modal_summary);
1299
1302
  }
1300
1303
  Util.render_table_html("hkex_holding_modal_body_body", _html);