Skip to content

Commit

Permalink
Fix : StockMarket
Browse files Browse the repository at this point in the history
  • Loading branch information
xxoznge committed Nov 18, 2023
1 parent f10d010 commit 17d95ae
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,13 +178,12 @@ def calculate_williams_r(closing_prices, period=14):

# LSTM 모델


final_df_values = final_df.values
data_values = data.values

# 입력 시퀀스에 대한 타임 스텝(T)을 정의합니다.
# 입력 시퀀스에 대한 타임 스텝(T)을 정의

T = 10 # 원하는대로 조정할 수 있습니다.
T = 10 # 원하는대로 조정

# 입력 및 타겟을 위한 데이터 시퀀스 생성
final_df_sequences = []
Expand All @@ -210,7 +209,6 @@ def calculate_williams_r(closing_prices, period=14):
X = np.array(final_df_sequences)
y = np.array(data_sequences)


# 데이터를 훈련 및 테스트 세트로 분할
split_ratio = 0.8 # 분할 비율을 조정할 수 있습니다.
split_index = int(split_ratio * len(X))
Expand Down Expand Up @@ -675,11 +673,6 @@ def predictMarket():
else:
pass

news_data.append({
'title': title,
'date': date
})

# 요청 간에 약간의 지연을 두어 IP 차단을 피하기
time.sleep(1.5)

Expand Down

0 comments on commit 17d95ae

Please sign in to comment.