analyser_hj3415 4.2.3__py3-none-any.whl → 4.2.5__py3-none-any.whl

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.
@@ -529,8 +529,8 @@ class MyLSTM:
529
529
  data = LSTMChartData(
530
530
  ticker=self.ticker,
531
531
  labels=merged_df["ds"].tolist(),
532
- prices=[{"x": ds, "y": y} for ds, y in zip(merged_df["ds"], merged_df["y"]) if pd.notna(y)], # type: ignore
533
- future_prices=[{"x": ds, "y": future_price} for ds, future_price in zip(merged_df["ds"], merged_df["future_price"])], # type: ignore
532
+ prices = [{"x": ds, "y": None if pd.isna(y) else y} for ds, y in zip(merged_df["ds"], merged_df["y"])], # type: ignore
533
+ future_prices=[{"x": ds, "y": None if pd.isna(future_price) else future_price} for ds, future_price in zip(merged_df["ds"], merged_df["future_price"])], # type: ignore
534
534
  grade=lstm_grade,
535
535
  num=num_in,
536
536
  is_lstm_up=is_lstm_up,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: analyser_hj3415
3
- Version: 4.2.3
3
+ Version: 4.2.5
4
4
  Summary: Stock analyser and database processing programs
5
5
  Requires-Python: >=3.6
6
6
  Description-Content-Type: text/markdown
@@ -9,9 +9,9 @@ analyser_hj3415/analyser/eval/mil.py,sha256=m1Ca7U7IR3A3tbRYAw8wG7SQsI-_LzwYdY9x
9
9
  analyser_hj3415/analyser/eval/red.py,sha256=iA4wpuayJalnlwn2SypsHuWPcthvxvNx2CleDraucFs,12168
10
10
  analyser_hj3415/analyser/tsa/__init__.py,sha256=pg20ZQRABedTdaIoOr5t043RNKtJ7ji_WmnZrD1IhPg,147
11
11
  analyser_hj3415/analyser/tsa/common.py,sha256=msUPowjFMxOqWqGn5Q_FFzijiuYBGOBrEBckxvV2deg,1979
12
- analyser_hj3415/analyser/tsa/lstm.py,sha256=oENuJyyo6U9MMn4UF4ZauGai51_dJisMSUNBiH8udXo,28998
12
+ analyser_hj3415/analyser/tsa/lstm.py,sha256=9VDFA1sfm-SSDkAU3IOv8rxYCHGUzaTWre5XfmAgTUQ,29044
13
13
  analyser_hj3415/analyser/tsa/prophet.py,sha256=g6-MLOOdfCwmYGoPgfCDh3FZp1FDUbqoWr5WG2kvzEI,17350
14
- analyser_hj3415-4.2.3.dist-info/entry_points.txt,sha256=ZfjPnJuH8SzvhE9vftIPMBIofsc65IAWYOhqOC_L5ck,65
15
- analyser_hj3415-4.2.3.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
16
- analyser_hj3415-4.2.3.dist-info/METADATA,sha256=4PYTJX3EtJYDDdAcpycTc2BI8GrB5wRCT1sezG1qko8,6777
17
- analyser_hj3415-4.2.3.dist-info/RECORD,,
14
+ analyser_hj3415-4.2.5.dist-info/entry_points.txt,sha256=ZfjPnJuH8SzvhE9vftIPMBIofsc65IAWYOhqOC_L5ck,65
15
+ analyser_hj3415-4.2.5.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
16
+ analyser_hj3415-4.2.5.dist-info/METADATA,sha256=UbQUEVDotckBKfYt-vWl6NWtwXdXYyAFEYXT1H-adzw,6777
17
+ analyser_hj3415-4.2.5.dist-info/RECORD,,