analyser_hj3415 2.9.15__tar.gz → 2.9.17__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: analyser_hj3415
3
- Version: 2.9.15
3
+ Version: 2.9.17
4
4
  Summary: Stock analyser and database processing programs
5
5
  Requires-Python: >=3.6
6
6
  Description-Content-Type: text/markdown
@@ -671,14 +671,17 @@ class MyLSTM:
671
671
  plt.title('Stock Price Prediction with LSTM Ensemble')
672
672
  plt.show()"""
673
673
 
674
- def is_up(self)-> bool:
674
+ def is_up(self)-> Optional[bool]:
675
675
  # 튜플의 [0]은 날짜 [1]은 값 배열
676
- data = self.get_final_predictions(refresh=False, expire_time_h=24)[1]
677
- # 데이터를 1D 배열로 변환
678
- flattened_data = data.flatten()
679
- tsa_logger.debug(f"flattened_data : {flattened_data}")
680
- # 증가 여부 확인
681
- return all(flattened_data[i] < flattened_data[i + 1] for i in range(len(flattened_data) - 1))
676
+ if myredis.Base.exists(f'{self.code}_mylstm_predictions'):
677
+ data = self.get_final_predictions(refresh=False, expire_time_h=24)[1]
678
+ # 데이터를 1D 배열로 변환
679
+ flattened_data = data.flatten()
680
+ tsa_logger.debug(f"flattened_data : {flattened_data}")
681
+ # 증가 여부 확인
682
+ return all(flattened_data[i] < flattened_data[i + 1] for i in range(len(flattened_data) - 1))
683
+ else:
684
+ return None
682
685
 
683
686
  @staticmethod
684
687
  def caching_based_on_prophet_ranking(refresh: bool, expire_time_h: int, top=20):
@@ -5,7 +5,7 @@ build-backend = "flit_core.buildapi"
5
5
 
6
6
  [project]
7
7
  name = "analyser_hj3415"
8
- version = "2.9.15"
8
+ version = "2.9.17"
9
9
  description = "Stock analyser and database processing programs"
10
10
  readme = "README.md"
11
11
  requires-python = ">=3.6"