analyser_hj3415 3.1.2__py3-none-any.whl → 3.2.0__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.
@@ -36,6 +36,7 @@ class Compile:
36
36
  self.prophet.code = code
37
37
 
38
38
  def get(self, refresh=False) -> dict:
39
+
39
40
  print(f"{self.code}/{self.name}의 compiling을 시작합니다.")
40
41
  redis_name = self.code + '_compile_scores'
41
42
  print(
@@ -110,6 +111,16 @@ class Compile:
110
111
  corp_lstm.initializing()
111
112
  corp_lstm.get_final_predictions(refresh=refresh, num=5)
112
113
 
114
+ @staticmethod
115
+ def analyse_lstm_mis(refresh: bool):
116
+ mi_lstm = tsa.MILSTM('wti')
117
+ print(f"*** LSTM prediction redis cashing Market Index items ***")
118
+ for mi_type in tsa.MIs.keys():
119
+ mi_lstm.mi_type = mi_type
120
+ print(f"{mi_lstm.mi_type}")
121
+ mi_lstm.initializing()
122
+ mi_lstm.get_final_predictions(refresh=refresh, num=5)
123
+
113
124
  @staticmethod
114
125
  def red_ranking(expect_earn: float = 0.06, refresh=False) -> OrderedDict:
115
126
  # 이전 expect earn 과 비교하여 다르거나 없으면 강제 refresh 설정
@@ -128,10 +128,10 @@ class MyProphet:
128
128
  fig2 = self.model.plot_components(self.df_forecast)
129
129
  plt.show() # 시각화 창 띄우기
130
130
 
131
- def export(self, to="str") -> Optional[str]:
131
+ def export(self, to="html") -> Optional[str]:
132
132
  """
133
133
  prophet과 plotly로 그래프를 그려서 html을 문자열로 반환
134
- :param to: str, png, htmlfile
134
+ :param to: html, png, file
135
135
  :return:
136
136
  """
137
137
  # Plotly를 사용한 시각화
@@ -161,7 +161,7 @@ class MyProphet:
161
161
  showlegend=False,
162
162
  )
163
163
 
164
- if to == 'str':
164
+ if to == 'html':
165
165
  # 그래프 HTML로 변환 (string 형식으로 저장)
166
166
  graph_html = plot(fig, output_type='div')
167
167
  return graph_html
@@ -169,8 +169,8 @@ class MyProphet:
169
169
  # 그래프를 PNG 파일로 저장
170
170
  fig.write_image(f"myprophet_{self.ticker}.png")
171
171
  return None
172
- elif to == 'htmlfile':
173
- # 그래프를 HTML 저장
172
+ elif to == 'file':
173
+ # 그래프를 HTML 파일로 저장
174
174
  plot(fig, filename=f'myprophet_{self.ticker}.html', auto_open=False)
175
175
  return None
176
176
  else:
analyser_hj3415/cli.py CHANGED
@@ -194,6 +194,7 @@ def analyser_manager():
194
194
  compile.Compile.analyse_lstm_topn(refresh=args.refresh, top=args.top)
195
195
  else:
196
196
  compile.Compile.analyse_lstm_topn(refresh=args.refresh)
197
+ compile.Compile.analyse_lstm_mis(refresh=args.refresh)
197
198
  except Exception as e:
198
199
  print(e)
199
200
  mymongo.Logs.save('cli','ERROR', f'analyser lstm caching 실행중 에러 - {e}')
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: analyser_hj3415
3
- Version: 3.1.2
3
+ Version: 3.2.0
4
4
  Summary: Stock analyser and database processing programs
5
5
  Requires-Python: >=3.6
6
6
  Description-Content-Type: text/markdown
@@ -1,7 +1,7 @@
1
1
  analyser_hj3415/__init__.py,sha256=f2E9Neh7Nzkhvdj7HWWlgxZK2sB95rBtaIgWEHzxK9E,450
2
- analyser_hj3415/cli.py,sha256=l-ZRCh_a2QXO-HWYb1S3d2A29pYmMb2RpsMAtoeGQDE,11727
2
+ analyser_hj3415/cli.py,sha256=MIdk_0JVnx4M1la-2ifF09JLMXsZzS0mrvsPMQ1C-1g,11798
3
3
  analyser_hj3415/analyser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
- analyser_hj3415/analyser/compile.py,sha256=e3ziVf8SX0K6rk9XFPAhi7cpxTaFlKYCQ2dHACzLlPo,5763
4
+ analyser_hj3415/analyser/compile.py,sha256=J2kSNC9xCWJ0l0A-nV6eUnBULP77xwdlaerVhXqDGvc,6153
5
5
  analyser_hj3415/analyser/eval/__init__.py,sha256=IP1d0Q3nOCAD3zK1qxrC685MkJQfUh-qaXc7xptTxk8,80
6
6
  analyser_hj3415/analyser/eval/blue.py,sha256=fq_eln7-EdwICNQ2sMXAfZKXGhQ29EaJwsGvn7xA29U,7632
7
7
  analyser_hj3415/analyser/eval/common.py,sha256=wcWJg_jNgr02i1U62oZGgLt2iscdle9X-u4aMnZl89Q,14127
@@ -10,13 +10,13 @@ analyser_hj3415/analyser/eval/mil.py,sha256=wN1jPu5zLJjoDk3kL7piL-4jWhpsAMeQpsTZ
10
10
  analyser_hj3415/analyser/eval/red.py,sha256=rJbidKlo2s2EJHBGn4HDbfCDcEGP5Rst8iQeJ6jlzNA,10988
11
11
  analyser_hj3415/analyser/tsa/__init__.py,sha256=0XIpMgYIiyDrSE3sp9S0J0gXwW4cpk6nQmxSjC3KkY4,371
12
12
  analyser_hj3415/analyser/tsa/lstm.py,sha256=22Rd1PTBeDAvITb1zw65Y51lLB76w6MyWXNKku6RzjM,29975
13
- analyser_hj3415/analyser/tsa/prophet.py,sha256=Xeb1GxvQQAacFtTFYN0fmzk6iYQkFSex2HDaY2Ek7OY,10154
13
+ analyser_hj3415/analyser/tsa/prophet.py,sha256=jHaOufe7FAJanPXgPh0YxvQ4OiATJue_7cDyfHnq1hc,10156
14
14
  analyser_hj3415/workroom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
15
  analyser_hj3415/workroom/mysklearn.py,sha256=wJXKz5MqqTzADdG2mqRMMzc_G9RzwYjj5_j4gyOopxQ,2030
16
16
  analyser_hj3415/workroom/mysklearn2.py,sha256=1lIy6EWEQHkOzDS-av8U0zQH6DuCLKWMI73dnJx5KRs,1495
17
17
  analyser_hj3415/workroom/score.py,sha256=P6nHBJYmyhigGtT4qna4BmNtvt4B93b7SKyzdstJK24,17376
18
18
  analyser_hj3415/workroom/trash.py,sha256=zF-W0piqkGr66UP6-iybo9EXh2gO0RP6R1FnIpsGkl8,12262
19
- analyser_hj3415-3.1.2.dist-info/entry_points.txt,sha256=ZfjPnJuH8SzvhE9vftIPMBIofsc65IAWYOhqOC_L5ck,65
20
- analyser_hj3415-3.1.2.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
21
- analyser_hj3415-3.1.2.dist-info/METADATA,sha256=fUkCXxwBSLJA_LKypntfXbZfPxhJy-WefnP6ZUihtvg,6777
22
- analyser_hj3415-3.1.2.dist-info/RECORD,,
19
+ analyser_hj3415-3.2.0.dist-info/entry_points.txt,sha256=ZfjPnJuH8SzvhE9vftIPMBIofsc65IAWYOhqOC_L5ck,65
20
+ analyser_hj3415-3.2.0.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
21
+ analyser_hj3415-3.2.0.dist-info/METADATA,sha256=rByJ0JDeAVZprcztSyaBD9cM-Qupq4hhdltooDtbSmY,6777
22
+ analyser_hj3415-3.2.0.dist-info/RECORD,,