@8btc/finance-assistant-mcp 0.0.64 → 0.0.65
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/dist/index.cjs +5 -5
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -45,7 +45,7 @@ function _interopNamespaceDefault(e) {
|
|
|
45
45
|
}
|
|
46
46
|
const echarts__namespace = /* @__PURE__ */ _interopNamespaceDefault(echarts);
|
|
47
47
|
const d3__namespace = /* @__PURE__ */ _interopNamespaceDefault(d3);
|
|
48
|
-
const version = "0.0.
|
|
48
|
+
const version = "0.0.65";
|
|
49
49
|
const pkgJSON = {
|
|
50
50
|
version
|
|
51
51
|
};
|
|
@@ -770,7 +770,7 @@ function Chapter4Sector({ data }) {
|
|
|
770
770
|
d.industry_impact.bullish_industries.map((it, index) => {
|
|
771
771
|
return /* @__PURE__ */ jsxRuntime.jsxs("tr", { className: "h-[40px]", children: [
|
|
772
772
|
/* @__PURE__ */ jsxRuntime.jsx("td", { className: "px-2", children: it.sector }),
|
|
773
|
-
/* @__PURE__ */ jsxRuntime.jsx("td", { className: "px-2", children: Array(it.score).fill(void 0).map((itt, index2) => {
|
|
773
|
+
/* @__PURE__ */ jsxRuntime.jsx("td", { className: "px-2", children: Array(Math.round(it.score)).fill(void 0).map((itt, index2) => {
|
|
774
774
|
return /* @__PURE__ */ jsxRuntime.jsx("span", { children: "★" }, index2);
|
|
775
775
|
}) })
|
|
776
776
|
] }, index);
|
|
@@ -778,7 +778,7 @@ function Chapter4Sector({ data }) {
|
|
|
778
778
|
d.industry_impact.bearish_industries.map((it, index) => {
|
|
779
779
|
return /* @__PURE__ */ jsxRuntime.jsxs("tr", { className: "h-[40px]", children: [
|
|
780
780
|
/* @__PURE__ */ jsxRuntime.jsx("td", { className: "px-2", children: it.sector }),
|
|
781
|
-
/* @__PURE__ */ jsxRuntime.jsx("td", { className: "px-2", children: Array(Math.abs(it.score)).fill(void 0).map((itt, index2) => {
|
|
781
|
+
/* @__PURE__ */ jsxRuntime.jsx("td", { className: "px-2", children: Array(Math.abs(Math.round(it.score))).fill(void 0).map((itt, index2) => {
|
|
782
782
|
return /* @__PURE__ */ jsxRuntime.jsx("span", { children: "▼" }, index2);
|
|
783
783
|
}) })
|
|
784
784
|
] }, index);
|
|
@@ -791,7 +791,7 @@ function Chapter4Sector({ data }) {
|
|
|
791
791
|
/* @__PURE__ */ jsxRuntime.jsxs("strong", { children: [
|
|
792
792
|
it.sector,
|
|
793
793
|
"(",
|
|
794
|
-
Array(it.score).fill(void 0).map((itt, index2) => {
|
|
794
|
+
Array(Math.round(it.score)).fill(void 0).map((itt, index2) => {
|
|
795
795
|
return /* @__PURE__ */ jsxRuntime.jsx("span", { children: "★" }, index2);
|
|
796
796
|
}),
|
|
797
797
|
"):"
|
|
@@ -808,7 +808,7 @@ function Chapter4Sector({ data }) {
|
|
|
808
808
|
/* @__PURE__ */ jsxRuntime.jsxs("strong", { children: [
|
|
809
809
|
it.sector,
|
|
810
810
|
"(",
|
|
811
|
-
Array(Math.abs(it.score)).fill(void 0).map((itt, index2) => {
|
|
811
|
+
Array(Math.abs(Math.round(it.score))).fill(void 0).map((itt, index2) => {
|
|
812
812
|
return /* @__PURE__ */ jsxRuntime.jsx("span", { children: "▼" }, index2);
|
|
813
813
|
}),
|
|
814
814
|
"):"
|