analyser_hj3415 2.9.14__py3-none-any.whl → 2.9.16__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- analyser_hj3415/tsa.py +14 -2
- {analyser_hj3415-2.9.14.dist-info → analyser_hj3415-2.9.16.dist-info}/METADATA +1 -1
- {analyser_hj3415-2.9.14.dist-info → analyser_hj3415-2.9.16.dist-info}/RECORD +5 -5
- {analyser_hj3415-2.9.14.dist-info → analyser_hj3415-2.9.16.dist-info}/WHEEL +0 -0
- {analyser_hj3415-2.9.14.dist-info → analyser_hj3415-2.9.16.dist-info}/entry_points.txt +0 -0
analyser_hj3415/tsa.py
CHANGED
@@ -235,7 +235,7 @@ class MyProphet:
|
|
235
235
|
if isinstance(top, int):
|
236
236
|
return OrderedDict(list(ranking.items())[:top])
|
237
237
|
else:
|
238
|
-
raise ValueError("top 인자는 int
|
238
|
+
raise ValueError("top 인자는 'all' 이나 int형 이어야 합니다.")
|
239
239
|
|
240
240
|
@dataclass
|
241
241
|
class LSTMData:
|
@@ -671,9 +671,21 @@ class MyLSTM:
|
|
671
671
|
plt.title('Stock Price Prediction with LSTM Ensemble')
|
672
672
|
plt.show()"""
|
673
673
|
|
674
|
+
def is_up(self)-> Optional[bool]:
|
675
|
+
# 튜플의 [0]은 날짜 [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
|
685
|
+
|
674
686
|
@staticmethod
|
675
687
|
def caching_based_on_prophet_ranking(refresh: bool, expire_time_h: int, top=20):
|
676
|
-
ranking_topn =
|
688
|
+
ranking_topn = MyProphet.ranking(refresh=False, top=top)
|
677
689
|
tsa_logger.info(ranking_topn)
|
678
690
|
mylstm = MyLSTM('005930')
|
679
691
|
print(f"*** LSTM prediction redis cashing top{top} items ***")
|
@@ -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=BF5vwZuVljYfOrlYXQ7Rq4Y7akDaPNyAaVM9u-oA8Y8,28020
|
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.16.dist-info/entry_points.txt,sha256=ZfjPnJuH8SzvhE9vftIPMBIofsc65IAWYOhqOC_L5ck,65
|
11
|
+
analyser_hj3415-2.9.16.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
|
12
|
+
analyser_hj3415-2.9.16.dist-info/METADATA,sha256=8e5vOkwoHNgpxyT-lYyYp5IuIGYLd9tqo1C9BI8IQ9M,6777
|
13
|
+
analyser_hj3415-2.9.16.dist-info/RECORD,,
|
File without changes
|
File without changes
|