analyser_hj3415 2.9.16__py3-none-any.whl → 2.9.18__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.
- analyser_hj3415/tsa.py +8 -11
- {analyser_hj3415-2.9.16.dist-info → analyser_hj3415-2.9.18.dist-info}/METADATA +1 -1
- {analyser_hj3415-2.9.16.dist-info → analyser_hj3415-2.9.18.dist-info}/RECORD +5 -5
- {analyser_hj3415-2.9.16.dist-info → analyser_hj3415-2.9.18.dist-info}/WHEEL +0 -0
- {analyser_hj3415-2.9.16.dist-info → analyser_hj3415-2.9.18.dist-info}/entry_points.txt +0 -0
analyser_hj3415/tsa.py
CHANGED
@@ -290,7 +290,7 @@ class MyLSTM:
|
|
290
290
|
@code.setter
|
291
291
|
def code(self, code: str):
|
292
292
|
assert utils.is_6digit(code), f'Invalid value : {code}'
|
293
|
-
tsa_logger.
|
293
|
+
tsa_logger.debug(f'change code : {self.code} -> {code}')
|
294
294
|
|
295
295
|
self._code = code
|
296
296
|
self.name = myredis.Corps(code, 'c101').get_name()
|
@@ -671,17 +671,14 @@ class MyLSTM:
|
|
671
671
|
plt.title('Stock Price Prediction with LSTM Ensemble')
|
672
672
|
plt.show()"""
|
673
673
|
|
674
|
-
def is_up(self)->
|
674
|
+
def is_up(self)-> bool:
|
675
675
|
# 튜플의 [0]은 날짜 [1]은 값 배열
|
676
|
-
|
677
|
-
|
678
|
-
|
679
|
-
|
680
|
-
|
681
|
-
|
682
|
-
return all(flattened_data[i] < flattened_data[i + 1] for i in range(len(flattened_data) - 1))
|
683
|
-
else:
|
684
|
-
return None
|
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))
|
685
682
|
|
686
683
|
@staticmethod
|
687
684
|
def caching_based_on_prophet_ranking(refresh: bool, expire_time_h: int, top=20):
|
@@ -1,13 +1,13 @@
|
|
1
1
|
analyser_hj3415/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
2
|
analyser_hj3415/cli.py,sha256=a4oUwfPFEdd3r2Fq2EMHBITcp6lbXUjZvVWvCHIvCUQ,12540
|
3
3
|
analyser_hj3415/eval.py,sha256=eNrcbpVyj7SZJevWqatlj_gJ2EQTmLZAz2nPG5qNv6k,38811
|
4
|
-
analyser_hj3415/tsa.py,sha256=
|
4
|
+
analyser_hj3415/tsa.py,sha256=A4iFhNGXAuxEvW-Jn6lpMY7JJyKil4Q0XYA31-dUOXg,27882
|
5
5
|
analyser_hj3415/workroom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
6
|
analyser_hj3415/workroom/mysklearn.py,sha256=wJXKz5MqqTzADdG2mqRMMzc_G9RzwYjj5_j4gyOopxQ,2030
|
7
7
|
analyser_hj3415/workroom/mysklearn2.py,sha256=1lIy6EWEQHkOzDS-av8U0zQH6DuCLKWMI73dnJx5KRs,1495
|
8
8
|
analyser_hj3415/workroom/score.py,sha256=P6nHBJYmyhigGtT4qna4BmNtvt4B93b7SKyzdstJK24,17376
|
9
9
|
analyser_hj3415/workroom/trash.py,sha256=zF-W0piqkGr66UP6-iybo9EXh2gO0RP6R1FnIpsGkl8,12262
|
10
|
-
analyser_hj3415-2.9.
|
11
|
-
analyser_hj3415-2.9.
|
12
|
-
analyser_hj3415-2.9.
|
13
|
-
analyser_hj3415-2.9.
|
10
|
+
analyser_hj3415-2.9.18.dist-info/entry_points.txt,sha256=ZfjPnJuH8SzvhE9vftIPMBIofsc65IAWYOhqOC_L5ck,65
|
11
|
+
analyser_hj3415-2.9.18.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
|
12
|
+
analyser_hj3415-2.9.18.dist-info/METADATA,sha256=ZVd22jJkK5iLGAv_SbiiXI3OefzIy69M4ifg2YtgQVQ,6777
|
13
|
+
analyser_hj3415-2.9.18.dist-info/RECORD,,
|
File without changes
|
File without changes
|