analyser_hj3415 4.5.0__tar.gz → 4.5.2__tar.gz

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 (17) hide show
  1. {analyser_hj3415-4.5.0 → analyser_hj3415-4.5.2}/PKG-INFO +1 -1
  2. {analyser_hj3415-4.5.0 → analyser_hj3415-4.5.2}/analyser_hj3415/analyser/tsa/lstm.py +1 -1
  3. {analyser_hj3415-4.5.0 → analyser_hj3415-4.5.2}/analyser_hj3415/analyser/tsa/myprophet.py +1 -1
  4. {analyser_hj3415-4.5.0 → analyser_hj3415-4.5.2}/pyproject.toml +1 -1
  5. {analyser_hj3415-4.5.0 → analyser_hj3415-4.5.2}/README.md +0 -0
  6. {analyser_hj3415-4.5.0 → analyser_hj3415-4.5.2}/analyser_hj3415/.DS_Store +0 -0
  7. {analyser_hj3415-4.5.0 → analyser_hj3415-4.5.2}/analyser_hj3415/__init__.py +0 -0
  8. {analyser_hj3415-4.5.0 → analyser_hj3415-4.5.2}/analyser_hj3415/analyser/__init__.py +0 -0
  9. {analyser_hj3415-4.5.0 → analyser_hj3415-4.5.2}/analyser_hj3415/analyser/eval/__init__.py +0 -0
  10. {analyser_hj3415-4.5.0 → analyser_hj3415-4.5.2}/analyser_hj3415/analyser/eval/blue.py +0 -0
  11. {analyser_hj3415-4.5.0 → analyser_hj3415-4.5.2}/analyser_hj3415/analyser/eval/common.py +0 -0
  12. {analyser_hj3415-4.5.0 → analyser_hj3415-4.5.2}/analyser_hj3415/analyser/eval/growth.py +0 -0
  13. {analyser_hj3415-4.5.0 → analyser_hj3415-4.5.2}/analyser_hj3415/analyser/eval/mil.py +0 -0
  14. {analyser_hj3415-4.5.0 → analyser_hj3415-4.5.2}/analyser_hj3415/analyser/eval/red.py +0 -0
  15. {analyser_hj3415-4.5.0 → analyser_hj3415-4.5.2}/analyser_hj3415/analyser/tsa/__init__.py +0 -0
  16. {analyser_hj3415-4.5.0 → analyser_hj3415-4.5.2}/analyser_hj3415/analyser/tsa/common.py +0 -0
  17. {analyser_hj3415-4.5.0 → analyser_hj3415-4.5.2}/analyser_hj3415/cli.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: analyser_hj3415
3
- Version: 4.5.0
3
+ Version: 4.5.2
4
4
  Summary: Stock analyser and database processing programs
5
5
  Requires-Python: >=3.6
6
6
  Description-Content-Type: text/markdown
@@ -535,7 +535,7 @@ class MyLSTM:
535
535
  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
536
536
  grade=lstm_grade,
537
537
  num=num_in,
538
- is_lstm_up=is_lstm_up,
538
+ is_lstm_up=bool(is_lstm_up),
539
539
  )
540
540
  #import pprint
541
541
  #pprint.pprint(data.prices[-10:], compact=True)
@@ -116,7 +116,7 @@ class MyProphet:
116
116
  data = yf.download(
117
117
  tickers=self.ticker,
118
118
  start=four_years_ago.strftime('%Y-%m-%d'),
119
- end=today.strftime('%Y-%m-%d')
119
+ # end=today.strftime('%Y-%m-%d') 가장 최근날짜까지 조회위해 비활성 처리
120
120
  )
121
121
  # 데이터가 비어있지 않다면 성공으로 판단
122
122
  if not data.empty:
@@ -5,7 +5,7 @@ build-backend = "flit_core.buildapi"
5
5
 
6
6
  [project]
7
7
  name = "analyser_hj3415"
8
- version = "4.5.0"
8
+ version = "4.5.2"
9
9
  description = "Stock analyser and database processing programs"
10
10
  readme = "README.md"
11
11
  requires-python = ">=3.6"