forked from Alpha-mon/AI-RoboAdvisor-Flask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.py
1105 lines (802 loc) · 42.3 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
from flask import Flask, request, jsonify
import pandas as pd
import numpy as np
from sklearn.preprocessing import StandardScaler, MinMaxScaler
from sklearn.metrics.pairwise import cosine_similarity
from sklearn.decomposition import PCA
from keras.layers import Embedding, Bidirectional, LSTM, Dense, LeakyReLU, BatchNormalization
from keras.callbacks import EarlyStopping, ModelCheckpoint
from keras.preprocessing.text import Tokenizer
from keras.preprocessing.sequence import pad_sequences
from keras.optimizers import Adam
from keras.models import Sequential, Model
import tensorflow as tf
import random, requests, time
import yfinance as yf
from datetime import timedelta
import datetime
import time
from bs4 import BeautifulSoup
from konlpy.tag import Okt
from scipy.optimize import minimize
app = Flask(__name__)
# Stock Price Prediction Model, Price Algorithm 7
@app.route('/predict/price', methods=['POST'])
def predictPrice():
# 야후 파이낸스 주식 정보 가져오기
# 주식 종목 지정 필수
ticker = request.json.get("ticker")
end_date = datetime.datetime.now()
start_date = end_date - timedelta(days=3650)
data = yf.download(ticker, start=start_date, end=end_date)
closing_prices = data['Close']
volume = data['Volume']
moving_average = closing_prices.rolling(window=120).mean()
# 6개 알고리즘 (Bollinger, MACD, MOK, RSI, STCK, WR) 전체 코드
# Bollinger
def calculate_bollinger_bands(closing_prices, window=20, num_std=2):
rolling_mean = closing_prices.rolling(window=window).mean()
rolling_std = closing_prices.rolling(window=window).std()
upper_band = rolling_mean + num_std * rolling_std
lower_band = rolling_mean - num_std * rolling_std
return upper_band, lower_band
upper_band, lower_band = calculate_bollinger_bands(closing_prices)
bollinger_bands_data = pd.DataFrame({'Upper Band': upper_band, 'Lower Band': lower_band})
bollinger_bands_data.dropna(inplace=True)
result = np.where(closing_prices > upper_band, (closing_prices - upper_band) / (upper_band - lower_band), np.where(closing_prices < lower_band, (closing_prices - lower_band) / (lower_band - upper_band), np.nan))
bollinger_bands_data['Result'] = pd.Series(result, index=closing_prices.index)
bollinger_bands_data['Result'].fillna(method='ffill', inplace=True)
bollinger_bands_data['Prediction'] = bollinger_bands_data['Result'].shift(-1)
bollinger_bands_data.dropna(inplace=True)
bollinger_bands_data['Trend'] = bollinger_bands_data['Prediction'].diff()
bollinger_bands_data['Trend'] = (bollinger_bands_data['Trend'] + 1) / 2
min_pred = bollinger_bands_data['Prediction'].min()
max_pred = bollinger_bands_data['Prediction'].max()
bollinger_bands_data['Prediction'] = (bollinger_bands_data['Prediction'] - min_pred) / (max_pred - min_pred)
min_trend = bollinger_bands_data['Trend'].min()
max_trend = bollinger_bands_data['Trend'].max()
bollinger_bands_data['Trend'] = (bollinger_bands_data['Trend'] - min_trend) / (max_trend - min_trend)*100
pd.set_option('display.float_format', '{:.4f}'.format)
# MACD
def calculate_macd(closing_prices):
short_ema = closing_prices.ewm(span=26, adjust=False).mean()
long_ema = closing_prices.ewm(span=12, adjust=False).mean()
dif = short_ema - long_ema
signal_line = dif.ewm(span=9, adjust=False).mean()
histogram = dif - signal_line
return dif, signal_line, histogram
dif, signal_line, histogram = calculate_macd(closing_prices)
macd_data = pd.DataFrame({'DIF': dif, 'Signal Line': signal_line, 'Histogram': histogram})
macd_data['Result'] = np.where(macd_data['DIF'] > macd_data['Signal Line'], 1, 0)
macd_data['Result'] = (macd_data['Result'].rolling(window=20, min_periods=1).mean())*100
macd_data['Prediction'] = macd_data['Result'].shift(-1)
macd_data.dropna(inplace=True)
# MOK
def calculate_mok(closing_prices, period=14, ma_period=20):
returns = closing_prices.pct_change()
moving_average = closing_prices.rolling(window=ma_period).mean()
momentum = closing_prices.diff(period)
normalized_momentum = 100 * (momentum - np.min(momentum)) / (np.max(momentum) - np.min(momentum))
return normalized_momentum
mok_values = calculate_mok(closing_prices)
# RSI
def calculate_rsi(closing_prices, window=20):
price_changes = closing_prices.diff()
up_changes = price_changes.where(price_changes > 0, 0)
down_changes = -price_changes.where(price_changes < 0, 0)
avg_up_changes = up_changes.rolling(window=window, min_periods=1).mean()
avg_down_changes = down_changes.rolling(window=window, min_periods=1).mean()
rs = avg_up_changes / avg_down_changes
rsi = 100 - (100 / (1 + rs))
return rsi
rsi_result = calculate_rsi(closing_prices, window=len(closing_prices)//10) # 기간을 데이터의 1/10로 동적으로 설정
rsi_result.dropna(inplace=True)
# STCK
def calculate_stck(closing_prices, window=20):
lowest_low = closing_prices.rolling(window=window).min()
highest_high = closing_prices.rolling(window=window).max()
stck = 100 * (closing_prices - lowest_low) / (highest_high - lowest_low)
stck_ma = stck.rolling(window=20).mean()
return stck_ma
stck_result = calculate_stck(closing_prices)
stck_result.dropna(inplace=True)
# WR
def calculate_williams_r(closing_prices, period=14):
high_prices = data['High']
low_prices = data['Low']
moving_average = closing_prices.rolling(window=20).mean()
highest_high = high_prices.rolling(window=period).max()
lowest_low = low_prices.rolling(window=period).min()
williams_r = (highest_high - moving_average) / (highest_high - lowest_low) * -100
normalized_williams_r = 100 * (williams_r + 100) / 100
return normalized_williams_r
wr_result = calculate_williams_r(closing_prices)
# 6개 지표들을 하나의 데이터 프레임에 합치기
final_df = pd.DataFrame({
'Bollinger': bollinger_bands_data['Trend'],
'MACD': macd_data['Prediction'],
'MOK': mok_values,
'RSI': rsi_result,
'STCK': stck_result,
'WR': wr_result
})
# NaN 값 제거
final_df.dropna(inplace=True)
# 최종 데이터 프레임 출력
print(final_df)
# LSTM 모델
final_df_values = final_df.values
data_values = data.values
# 입력 시퀀스에 대한 타임 스텝(T)을 정의
T = 10 # 원하는대로 조정
# 입력 및 타겟을 위한 데이터 시퀀스 생성
final_df_sequences = []
data_sequences = []
for i in range(len(data_values) - T):
final_df_sequences.append(final_df_values[i:i+T])
data_sequences.append(closing_prices.iloc[i+T])
filtered_final_df_sequences = []
filtered_data_sequences = []
# 시퀀스 길이 맞추기
for i, seq in enumerate(final_df_sequences):
if len(seq) == 10:
filtered_final_df_sequences.append(seq)
filtered_data_sequences.append(data_sequences[i])
final_df_sequences = filtered_final_df_sequences
data_sequences = filtered_data_sequences
# 시퀀스를 넘파이 배열로 변환
X = np.array(final_df_sequences)
y = np.array(data_sequences)
# 데이터를 훈련 및 테스트 세트로 분할
split_ratio = 0.8 # 분할 비율을 조정할 수 있습니다.
split_index = int(split_ratio * len(X))
X_train, X_test = X[:split_index], X[split_index:]
y_train, y_test = y[:split_index], y[split_index:]
# LSTM 모델 구축
model = Sequential()
# 첫 번째 LSTM 레이어 (시퀀스 출력을 반환하여 다음 레이어로 전달)
model.add(LSTM(50, activation='relu', return_sequences=True, input_shape=(T, 6)))
# 두 번째 LSTM 레이어
model.add(LSTM(50, activation='relu', return_sequences=True))
# 세 번째 LSTM 레이어 (시퀀스 출력을 반환하지 않음)
model.add(LSTM(50, activation='relu'))
# 출력 레이어
model.add(Dense(1))
# 모델 컴파일
model.compile(optimizer='adam', loss='mean_squared_error')
# 모델 훈련
model.fit(X_train, y_train, epochs=100, batch_size=32, validation_split=0.2)
# 테스트 데이터에서 모델 평가
loss = model.evaluate(X_test, y_test)
print(f'Test Loss: {loss}')
# 예측 수행
predictions = model.predict(X_test)
print(predictions)
# 예측 결과를 데이터 프레임으로 변환
predictions_df = pd.DataFrame(predictions, columns=["Predictions"])
print(predictions_df)
# LSTM 모델의 예측 값을 6개 지표 값과 함께 생성 모델 입력값으로 넣기 위해
# T 타임 스텝 만큼의 길이를 고려하여 LSTM 예측값 넣기
final_df["LSTM_Predictions"] = np.nan
final_df["LSTM_Predictions"].iloc[-len(predictions_df):] = predictions_df["Predictions"].values
# NaN 값 제거
final_df.dropna(inplace=True)
# 다시 시퀀스로 변환
final_df_values = final_df.values
final_df_sequences = []
for i in range(len(data_values) - T):
final_df_sequences.append(final_df_values[i:i+T])
X = np.array(final_df_sequences, dtype=object)
# GAN 모델
# 생성 모델 G (주식 가격의 시퀀스를 생성)
def build_generator(input_shape=(T, 7)): # 입력 값 : LSTM 모델 예측 + 6개 지표 값
model = Sequential()
# LSTM 레이어와 BatchNormalization, LeakyReLU 활성화 함수를 이용하여 시퀀스를 학습
model.add(LSTM(128, return_sequences=True, input_shape=input_shape))
model.add(LeakyReLU(alpha=0.2))
model.add(BatchNormalization(momentum=0.8))
# Flatten layer를 제거하고, T 길이의 시퀀스를 생성하도록 수정
model.add(LSTM(128))
model.add(Dense(T, activation='linear'))
noise = tf.keras.layers.Input(shape=input_shape)
generated_sequence = model(noise)
return Model(noise, generated_sequence)
# 구분 모델 D (주가의 실제 시퀀스와 생성된 시퀀스를 구분)
def build_discriminator(input_shape=(T, 1)):
model = Sequential()
# LSTM 레이어와 LeakyReLU 활성화 함수를 사용하여 시퀀스를 처리
model.add(LSTM(128, input_shape=input_shape))
model.add(LeakyReLU(alpha=0.2))
model.add(Dense(1, activation='sigmoid'))
sequence = tf.keras.layers.Input(shape=input_shape)
validity = model(sequence)
# 주어진 시퀀스가 실제인지 생성된 것인지에 대한 확률
return Model(sequence, validity)
# 학습 함수 (생성된 주식 가격 시퀀스와 실제 주식 가격 시퀀스를 사용하여 판별자를 학습)
def train_gan(generator, discriminator, combined, epochs, batch_size=32):
valid = np.ones((batch_size, 1))
fake = np.zeros((batch_size, 1))
for epoch in range(epochs):
idx = np.random.randint(0, X_train.shape[0], batch_size)
sequences = X_train[idx]
# 주식 예측값 생성
predicted_stock = model.predict(sequences)
# LSTM 예측값을 sequences에 추가
predicted_stock_reshaped = predicted_stock.reshape(batch_size, 1, 1) # (batch_size, 1, 1) 형태로 변환
predicted_stock_expanded = np.repeat(predicted_stock_reshaped, T, axis=1) # predicted_stock_reshaped를 T 타임 스텝만큼 확장
X_train_combined = np.concatenate([sequences, predicted_stock_expanded], axis=2)
generated_stock = generator.predict(X_train_combined)
generated_stock_reshaped = generated_stock.reshape(batch_size, T, 1)
# 판별자 학습
d_loss_real = discriminator.train_on_batch(predicted_stock_expanded, valid)
d_loss_fake = discriminator.train_on_batch(generated_stock_reshaped, fake)
d_loss = 0.5 * np.add(d_loss_real, d_loss_fake)
# 생성자 학습
g_loss = combined.train_on_batch(X_train_combined, valid)
print(f"{epoch}/{epochs} [D loss: {d_loss[0]} | D accuracy: {100 * d_loss[1]}] [G loss: {g_loss}]")
# 판별자 및 생성자 모델 초기화, 생성자와 판별자를 결합하여
discriminator = build_discriminator()
discriminator.compile(loss='binary_crossentropy', optimizer=Adam(0.0002, 0.5), metrics=['accuracy'])
generator = build_generator()
z = tf.keras.layers.Input(shape=(T, 7))
generated_sequence = generator(z)
discriminator.trainable = False
validity = discriminator(generated_sequence)
combined = Model(z, validity)
combined.compile(loss='binary_crossentropy', optimizer=Adam(0.0002, 0.5))
#학습 시작
train_gan(generator, discriminator, combined, epochs=10, batch_size=32)
# 학습 후 최종 예측을 수행하는 함수
def final_predictions(generator, test_data, batch_size=32):
predicted_stock_lstm = model.predict(test_data)
# LSTM 예측값을 test_data에 추가
predicted_stock_expanded = np.repeat(predicted_stock_lstm[:, np.newaxis], T, axis=1) # (batch_size, T)로 형태 변경
test_data_combined = np.concatenate([test_data, predicted_stock_expanded], axis=2)
# G 모델을 사용하여 합성 주가를 생성
generated_stock = generator.predict(test_data_combined)
# LSTM 예측과 G 모델의 예측을 평균
final_predicted_stock = (predicted_stock_lstm + generated_stock.mean(axis=1)) / 2.0
return final_predicted_stock
# 학습 후 예측
after_gan_predictions = final_predictions(generator, X_test, batch_size=32)
# 전체 예측 출력
print(after_gan_predictions)
# 최종 예측 출력 (평균)
average_prediction = float(np.mean(after_gan_predictions))
print(average_prediction)
# MACD 계산 함수
def calculate_macd(closing_prices):
# 26일 지수 이동 평균 (단기 이동 평균)
short_ema = closing_prices.ewm(span=26, adjust=False).mean()
# 12일 지수 이동 평균(장기 이동평균)
long_ema = closing_prices.ewm(span=12, adjust=False).mean()
# DIF : 단기 이동평균과 장기 이동평균 간의 차이
dif = short_ema - long_ema
# Signal Line : DIF의 9일 이동평균
signal_line = dif.ewm(span=9, adjust=False).mean()
# histogram : DIF와 Signal Line 간의 차이
histogram = dif - signal_line
return dif, signal_line, histogram
# MACD 계산
dif, signal_line, histogram = calculate_macd(closing_prices)
macd_data = pd.DataFrame({'DIF': dif, 'Signal Line': signal_line, 'Histogram': histogram})
# Result, Prediction 계산
macd_data['Result'] = np.where(macd_data['DIF'] > macd_data['Signal Line'], 1, 0)
macd_data['Result'] = macd_data['Result'].rolling(window=20, min_periods=1).mean()
macd_data['Prediction'] = macd_data['Result'].shift(-1)
macd_data.dropna(inplace=True)
# Trend 계산
macd_data['Trend'] = macd_data['Prediction'].diff()
macd_data['Trend'] = (macd_data['Trend'] + 1) / 2
# 전체 예측을 기반으로 추세를 계산하여 출력
future_trend = macd_data['Prediction'].diff().sum()
MACD_result = (future_trend + 1) / 2
print("MACD result:", 100*MACD_result)
# STCK 계산 함수 (20일 이동평균 사용)
def calculate_stck(closing_prices, window=20):
# 최저 가격과 최고 가격을 계산
lowest_low = closing_prices.rolling(window=window).min()
highest_high = closing_prices.rolling(window=window).max()
stck = 100 * (closing_prices - lowest_low) / (highest_high - lowest_low)
stck_ma = stck.rolling(window=20).mean()
return stck_ma
# STCK 계산
prediction = calculate_stck(closing_prices)
# NaN 값을 가진 행 제거
prediction.dropna(inplace=True)
# STCK 값의 평균을 사용하여 최종 예측 계산
STCK_result = prediction.mean()
# "미래 추세"만 출력
print("STCK_result:", STCK_result)
# Bollinger Bands 계산 함수
def calculate_bollinger_bands(closing_prices, window=20, num_std=2):
rolling_mean = closing_prices.rolling(window=window).mean()
rolling_std = closing_prices.rolling(window=window).std()
upper_band = rolling_mean + num_std * rolling_std
lower_band = rolling_mean - num_std * rolling_std
return upper_band, lower_band
# Bollinger Bands 계산
upper_band, lower_band = calculate_bollinger_bands(closing_prices)
bollinger_bands_data = pd.DataFrame({'Upper Band': upper_band, 'Lower Band': lower_band})
# NaN 값을 가지는 행 제거
bollinger_bands_data.dropna(inplace=True)
# 'Result' 계산
result = np.where(closing_prices > upper_band, (closing_prices - upper_band) / (upper_band - lower_band), np.where(closing_prices < lower_band, (closing_prices - lower_band) / (lower_band - upper_band), np.nan))
bollinger_bands_data['Result'] = pd.Series(result, index=closing_prices.index)
# 'Result' 값을 NaN 값을 직전의 유효한 값으로 채우기
bollinger_bands_data['Result'] = bollinger_bands_data['Result'].ffill()
# 'Prediction' 계산
bollinger_bands_data['Prediction'] = bollinger_bands_data['Result'].shift(-1)
# NaN 값을 가지는 행 제거
bollinger_bands_data.dropna(inplace=True)
# 'Trend' 계산
bollinger_bands_data['Trend'] = bollinger_bands_data['Prediction'].diff()
bollinger_bands_data['Trend'] = (bollinger_bands_data['Trend'] + 1) / 2
# 'Prediction' 및 'Trend' 열 정규화
min_pred = bollinger_bands_data['Prediction'].min()
max_pred = bollinger_bands_data['Prediction'].max()
bollinger_bands_data['Prediction'] = (bollinger_bands_data['Prediction'] - min_pred) / (max_pred - min_pred)
min_trend = bollinger_bands_data['Trend'].min()
max_trend = bollinger_bands_data['Trend'].max()
bollinger_bands_data['Trend'] = (bollinger_bands_data['Trend'] - min_trend) / (max_trend - min_trend)
future_trend = bollinger_bands_data['Prediction'].iloc[-1] - bollinger_bands_data['Prediction'].iloc[0]
Bollinger_result = (future_trend + 1) / 2
print("Bollinger_result:", 100*Bollinger_result)
# RSI를 계산하는 함수
def calculate_rsi(closing_prices, window=20):
# 전일 대비 가격 변화를 계산합니다.
price_changes = closing_prices.diff()
# 상승 가격과 하락 가격을 계산합니다.
up_changes = price_changes.where(price_changes > 0, 0)
down_changes = -price_changes.where(price_changes < 0, 0)
# 지정된 기간 동안의 평균 상승 및 하락 가격을 계산합니다.
avg_up_changes = up_changes.rolling(window=window, min_periods=1).mean()
avg_down_changes = down_changes.rolling(window=window, min_periods=1).mean()
# RS (상대 강도)를 계산합니다.
rs = avg_up_changes / avg_down_changes
# 공식을 사용하여 RSI를 계산합니다.
rsi = 100 - (100 / (1 + rs))
return rsi
# 동적 기간으로 RSI를 계산합니다.
rsi_window = len(closing_prices) // 10
prediction = calculate_rsi(closing_prices, window=rsi_window)
# 최신 RSI 값을 표시합니다 (미래 추세).
RSI_result = prediction.iloc[-1]
print("RSI_result:", RSI_result)
#VR
# 분산 비율을 계산하는 함수
def calculate_variance_ratio(closing_prices, short_window=20, long_window=120):
returns = closing_prices.pct_change()
# 계산에 필요한 충분한 수의 수익률 데이터가 있는지 확인합니다.
if len(returns) < long_window:
return np.nan
# 단기 및 장기 분산을 계산합니다.
short_variance = returns[-short_window:].var()
long_variance = returns[-long_window:].var()
# 0으로 나누거나 NaN 결과를 처리합니다.
if short_variance == 0 or np.isnan(short_variance) or np.isnan(long_variance):
return np.nan
# 분산 비율을 계산합니다.
variance_ratio = long_variance / short_variance
return variance_ratio
# 각 시간 기간에 대한 분산 비율을 계산합니다.
window_size = 120
vr_values = []
for i in range(window_size, len(closing_prices) + 1):
vr = calculate_variance_ratio(closing_prices[i - window_size:i])
vr_values.append(vr)
# 분산 비율 값을 0에서 100 사이로 정규화합니다.
min_vr = np.nanmin(vr_values)
max_vr = np.nanmax(vr_values)
normalized_vr = 100 * (vr_values - min_vr) / (max_vr - min_vr)
# 정규화된 분산 비율 값과 최종 예측을 계산합니다.
VR_result = np.nanmean(normalized_vr)
print("VR_result:", VR_result)
# WR
# 20일 이동 평균을 사용하여 Williams %R을 계산하는 함수
def calculate_williams_r(closing_prices, period=14):
high_prices = data['High']
low_prices = data['Low']
# 종가의 20일 이동평균을 계산합니다.
moving_average = closing_prices.rolling(window=20).mean()
# 주어진 기간 동안의 가장 높은 고가와 가장 낮은 저가를 계산합니다.
highest_high = high_prices.rolling(window=period).max()
lowest_low = low_prices.rolling(window=period).min()
# 20일 이동평균을 사용하여 Williams %R을 계산합니다.
williams_r = (highest_high - moving_average) / (highest_high - lowest_low) * -100
# 값을 0에서 100 사이로 정규화합니다.
normalized_williams_r = 100 * (williams_r + 100) / 100
return normalized_williams_r
# Williams %R 값을 계산합니다.
williams_r_values = calculate_williams_r(closing_prices)
# 정규화된 Williams %R 값을 사용하여 최종 예측을 계산합니다.
WR_result = np.nanmean(williams_r_values)
print("WR_result :", WR_result )
# MOK
# MOK (모멘텀) 지표를 20일 이동평균을 사용하여 계산하는 함수
def calculate_mok(closing_prices, period=14, ma_period=20):
returns = closing_prices.pct_change()
# 종가의 20일 이동평균을 계산합니다.
moving_average = closing_prices.rolling(window=ma_period).mean()
# 모멘텀을 현재 가격과 n 기간 전 가격의 차이로 계산합니다.
momentum = closing_prices.diff(period)
# 모멘텀 값을 0에서 100 사이로 정규화합니다.
normalized_momentum = 100 * (momentum - np.min(momentum)) / (np.max(momentum) - np.min(momentum))
return normalized_momentum
# MOK (모멘텀) 값을 계산합니다.
mok_values = calculate_mok(closing_prices)
# 정규화된 MOK (모멘텀) 값을 사용하여 최종 예측을 계산합니다.
MOK_result = np.nanmean(mok_values)
print("MOK_result:", MOK_result)
response_price = {
'average_prediction' : average_prediction,
'MACD': 100 * MACD_result,
'STCK': 100 * STCK_result,
'Bollinger': 100 * Bollinger_result,
'RSI': RSI_result,
'VR': VR_result,
'WR': WR_result,
'MOK': MOK_result
}
return jsonify(response_price)
# Sentiment Analysis for Stock Market Prediction
@app.route('/predict/market', methods=['POST'])
def predictMarket():
# 뉴스 제목, 일자 크롤링
base_url = "https://news.naver.com/main/main.nhn?mode=LSD&mid=shm&sid1=101&date="
# 1. User-Agent를 설정
headers = {
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36"
}
# 시작 날짜와 종료 날짜 설정
start_date = datetime.datetime.now() - datetime.timedelta(days=30)
end_date = datetime.datetime.now() - datetime.timedelta(days=5)
current_date = start_date
news_data = []
while current_date <= end_date:
# 2. 요청을 보낼 때 headers 추가
response = requests.get(base_url + current_date.strftime('%Y%m%d'), headers=headers)
soup = BeautifulSoup(response.text, 'html.parser')
for item in soup.select(".cluster_text a"):
title = item.text.strip()
if item.attrs["href"].startswith("http"):
news_url = item.attrs["href"]
else:
news_url = "https:" + item.attrs["href"]
detail_response = requests.get(news_url, headers=headers) # headers 추가
detail_soup = BeautifulSoup(detail_response.text, 'html.parser')
date_element = detail_soup.select_one("span.media_end_head_info_datestamp_time")
# 요소를 찾지 못한 경우 Pass
if date_element:
date = date_element.attrs["data-date-time"].split()[0]
news_data.append({
'title': title,
'date': date
})
else:
pass
# 요청 간에 약간의 지연을 두어 IP 차단을 피하기
time.sleep(1.5)
# 다음 날짜로 이동
current_date += datetime.timedelta(days=1)
# 뉴스 데이터를 날짜 순으로 정렬
news_data_sorted = sorted(news_data, key=lambda x: x['date'])
# 데이터프레임으로 변환
news_df = pd.DataFrame(news_data_sorted, columns=['date', 'title'])
# 시작 날짜와 종료 날짜를 문자열로 변환
start_date_str = start_date.strftime('%Y-%m-%d')
end_date_str = end_date.strftime('%Y-%m-%d')
# 원하는 날짜 범위만 선택
news_df = news_df[(news_df['date'] >= start_date_str) & (news_df['date'] <= end_date_str)]
# 크롤링한 뉴스 제목 명사 추출
# Okt 객체 초기화
okt = Okt()
# 제목에서 명사만 추출하는 함수
def extract_nouns(title):
return ', '.join(okt.nouns(title))
# 'title' 열의 각 제목에 대하여 명사만 추출
news_df['nouns'] = news_df['title'].apply(extract_nouns)
print(news_df)
# 코스피 등락율 - 뉴스
def get_kospi_closing_prices():
url = "https://finance.naver.com/sise/sise_index_day.nhn?code=KOSPI"
headers = {
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36"
}
kospi_closings = []
for i in range(1, 7):
response = requests.get(url + f"&page={i}", headers=headers)
soup = BeautifulSoup(response.content, 'html.parser')
dates = soup.select(".date")
closings = soup.select(".number_1")
for d, c in zip(dates, closings[::4]): # 종가만 가져오기 위해 slicing 사용
kospi_closings.append([d.text.strip(), float(c.text.replace(',', ''))])
return kospi_closings
kospi_data = get_kospi_closing_prices()
df = pd.DataFrame(kospi_data, columns=["Date", "Closing"])
# Shift를 사용해 다음 날짜의 종가를 가져와서 현재 날짜와 비교
# 예: 10월 9일 종가보다 10월 10일 종가가 더 높다면 10월 9일 등락율 1이 됨
df["Up/Down"] = (df["Closing"].shift(1) > df["Closing"]).astype(int)
# 날짜 기준으로 최근 30일의 데이터를 가져온 후, 정렬
df = df.sort_values(by="Date").tail(30).reset_index(drop=True)
df['Date'] = pd.to_datetime(df['Date'], format='%Y.%m.%d').dt.strftime('%Y-%m-%d')
print(df)
merged_df = pd.merge(news_df, df, left_on='date', right_on='Date', how='inner')
merged_df = merged_df[['date', 'Up/Down', 'title', 'nouns']]
print(merged_df)
# 단어 점수 초기화 및 개수
# 한 글자 제외 -> 두 글자 이상 단어
# 'nouns' 칼럼의 값을 문자열로 변환
df['nouns'] = merged_df['nouns'].astype(str)
df = df.dropna(subset=['nouns'])
# 'filtered_nouns' 컬럼 생성
merged_df['filtered_nouns'] = merged_df['nouns'].apply(lambda x: [word for word in x.split(', ') if len(word) > 1])
# 단어 점수 초기화
word_scores = {word: 0 for word_list in merged_df['filtered_nouns'] for word in word_list}
print(word_scores)
# 단어 빈도수 계산
from collections import Counter
word_counts = Counter(word for word_list in merged_df['filtered_nouns'] for word in word_list)
# 결과 출력
for word, count in word_counts.items():
print(f"{word}: {count}")
# 단어 점수 부여
# 전체 단어 개수 출력
total_words = sum(word_counts.values())
print(f"\nTotal number of words: {total_words}")
# Up/Down 값이 1인 데이터에서 포함된 단어의 리스트
up = []
for nouns in merged_df[merged_df['Up/Down'] == 1]['filtered_nouns']:
up.extend(nouns)
# Up/Down 값이 0인 데이터에서 포함된 단어의 리스트
down = []
for nouns in merged_df[merged_df['Up/Down'] == 0]['filtered_nouns']:
down.extend(nouns)
print("up :", len(up))
print("down :", len(down))
# 상승 비율과 하락 비율 계산
total_words = len(up) + len(down)
up_ratio = len(up) / total_words
down_ratio = len(down) / total_words
# 단어 점수 초기화
word_scores = {word: 0 for word in word_scores.keys()} # 기존의 word_scores 딕셔너리 사용
# Up(1) 데이터의 단어들에 대해서 하락 비율을 더해주기
for word in up:
if word in word_scores:
word_scores[word] += down_ratio
# Down(0) 데이터의 단어들에 대해서 상승 비율을 차감해주기
for word in down:
if word in word_scores:
word_scores[word] -= up_ratio
# 결과 확인
print(word_scores)
# 감성 사전 완료
total = []
for nouns in merged_df['filtered_nouns']:
sent_score = 0
for noun in nouns:
if noun in word_scores:
sent_score += word_scores[noun]
# 해당 뉴스 제목에 포함된 단어의 수로 나누어 평균 점수를 계산
avg_sent_score = sent_score / len(nouns) if nouns else 0 # 단어가 없는 경우 0으로 처리
total.append(avg_sent_score)
merged_df['sent_score'] = total
def calculate_sentiment_score(noun_list):
score = 0
for noun in noun_list:
if noun in word_scores: # word_scores는 기존에 구한 감성 사전입니다.
score += word_scores[noun]
return score / (len(noun_list) if len(noun_list) != 0 else 1)
# 감성사전의 평균 점수 계산
sent_mean = sum(word_scores.values()) / len(word_scores)
print('감성 사전 평균 점수 : ',sent_mean)
# 감성 점수 계산
def calculate_sentiment_score(noun_list):
score = 0
for noun in noun_list:
if noun in word_scores:
score += word_scores[noun]
return score / (len(noun_list) if len(noun_list) != 0 else 1)
merged_df['sent_score'] = merged_df['filtered_nouns'].apply(calculate_sentiment_score)
# 평균 점수를 기준으로 라벨링
merged_df['sent_label'] = merged_df['sent_score'].apply(lambda x: 1 if x > sent_mean else 0)
result_df = merged_df[['date', 'Up/Down', 'sent_score', 'sent_label', 'title', 'nouns']]
print(result_df)
# 모델링
# 1. 데이터 준비
X_data = merged_df['nouns'].apply(lambda x: ' '.join([word for word in x.split(', ') if len(word) > 1])).values
Y_data = merged_df['sent_label'].values # 기존의 'merged_df'를 사용
# 2. 토큰화 및 패딩
vocab_size = 2000
tokenizer = Tokenizer(num_words=vocab_size, oov_token='OOV')
tokenizer.fit_on_texts(X_data)
X_tokenized = tokenizer.texts_to_sequences(X_data)
X_padded = pad_sequences(X_tokenized, maxlen=30)
# 3. Bi-LSTM 모델 구축 및 훈련
model = Sequential()
model.add(Embedding(vocab_size, 100))
model.add(Bidirectional(LSTM(100)))
model.add(Dense(1, activation='sigmoid'))
model.compile(optimizer='rmsprop', loss='binary_crossentropy', metrics=['acc'])
es = EarlyStopping(monitor='val_loss', mode='min', verbose=1, patience=4)
mc = ModelCheckpoint('best_model.h5', monitor='val_acc', mode='max', verbose=1, save_best_only=True)
history = model.fit(X_padded, Y_data, epochs=15, callbacks=[es, mc], batch_size=256, validation_split=0.2)
# 최신 뉴스 크롤링 후 모델에 적용해서 최종 결과 확
# 뉴스 제목 크롤링
base_url = "https://news.naver.com/main/main.nhn?mode=LSD&mid=shm&sid1=101&date="
headers = {
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36"
}
start_date = datetime.datetime.now() - datetime.timedelta(days=5)
end_date = datetime.datetime.now() - datetime.timedelta(days=1)
current_date = start_date
news_data = []
while current_date <= end_date:
response = requests.get(base_url + current_date.strftime('%Y%m%d'), headers=headers)
soup = BeautifulSoup(response.text, 'html.parser')
for item in soup.select(".cluster_text a"):
title = item.text.strip()
news_data.append({
'date': current_date.strftime('%Y-%m-%d'),
'title': title
})
current_date += datetime.timedelta(days=1)
news_df = pd.DataFrame(news_data, columns=['date', 'title'])
# 명사 추출
okt = Okt()
news_df['nouns'] = news_df['title'].apply(lambda x: ', '.join(okt.nouns(x)))
# 'filtered_nouns' 컬럼 생성
news_df['filtered_nouns'] = news_df['nouns'].apply(lambda x: [word for word in x.split(', ') if len(word) > 1])
# 감성 사전과 비교하여 감성 점수 계산
news_df['filtered_nouns'] = news_df['nouns'].apply(lambda x: [word for word in x.split(', ') if len(word) > 1])
news_df['sent_score'] = news_df['filtered_nouns'].apply(calculate_sentiment_score) # 이전에 정의한 함수
# 예측을 위한 데이터 전처리
X_test_tokenized = tokenizer.texts_to_sequences(news_df['nouns'].apply(lambda x: ' '.join([word for word in x.split(', ') if len(word) > 1])).values)
X_test_padded = pad_sequences(X_test_tokenized, maxlen=30)
# 훈련된 Bi-LSTM 모델로 예측
predicted = model.predict(X_test_padded)
news_df['predicted_label'] = (predicted > 0.5).astype(int)
weight_bilstm = 0.7 # Bi-LSTM 모델에 부여할 가중치
weight_sentiment = 0.3 # 감성 사전에 부여할 가중치
# Bi-LSTM 모델의 예측 결과와 감성 사전의 점수를 각각 가져오기
bilstm_scores = predicted.flatten()
sentiment_scores = news_df['sent_score'].values
# 임계값을 설정하여 긍정/부정으로 분류
threshold = 0.7
# 각 비율 계산
bilstm_positive_ratio = (bilstm_scores > threshold).mean()
sentiment_positive_ratio = (sentiment_scores > sent_mean).mean()
# 가중 평균 계산
final_positive_ratio = (weight_bilstm * bilstm_positive_ratio) + (weight_sentiment * sentiment_positive_ratio)
# 결과 출력
if final_positive_ratio > 0.5:
print("종합적으로 긍정적인 결과가 나왔습니다.")
else:
print("종합적으로 부정적인 결과가 나왔습니다.")
print(f"종합적인 긍정 비율: {final_positive_ratio * 100:.2f}%")
print(f"종합적인 부정 비율: {100 - final_positive_ratio * 100:.2f}%")
if final_positive_ratio > 0.5:
prediction_result = "미래 주식 시장은 긍정적으로 예측됩니다."
else:
prediction_result = "미래 주식 시장은 부정적으로 예측됩니다."
positive_percentage = final_positive_ratio * 100
negative_percentage = 100 - positive_percentage
# API 응답 형식 구성
response_market = {
"prediction_result": prediction_result,
"positive_percentage": f"{positive_percentage:.2f}%",
"negative_percentage": f"{negative_percentage:.2f}%"
}
return jsonify(response_market)
# PortfolioOptimization
@app.route('/predict/portfolio', methods=['POST'])
def Protfolio():
# 사용자로부터 보유 주식 입력 받기
data = request.json
# JSON 데이터에서 필요한 값 추출
stock_list = data.get('stock_list', '').split(',')
stock_list = [stock.strip() for stock in stock_list]
def fetch_data(tickers):
data = {}
for ticker in tickers:
stock_data = yf.Ticker(ticker)
data[ticker] = stock_data.history(period="1y")
return data
stock_data = fetch_data(stock_list)
# 수익률 계산
returns = {stock: data['Close'].pct_change().dropna().values for stock, data in stock_data.items()}
look_back = 5
def create_dataset(dataset, look_back=1):
dataX, dataY = [], []
for i in range(len(dataset) - look_back):
a = dataset[i:(i + look_back)]
dataX.append(a)
dataY.append(dataset[i + look_back])
return np.array(dataX), np.array(dataY)
models = {}
for stock, daily_returns in returns.items():
scaler = MinMaxScaler(feature_range=(0, 1))
daily_returns = scaler.fit_transform(daily_returns.reshape(-1, 1))
X, Y = create_dataset(daily_returns, look_back)
model = Sequential()