-
Notifications
You must be signed in to change notification settings - Fork 0
/
Wrap_Folione.py
1246 lines (969 loc) · 77.9 KB
/
Wrap_Folione.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
#_*_ coding: utf-8 _*_
import copy
import itertools
from datetime import datetime
from datetime import timedelta
from dateutil.relativedelta import relativedelta
import operator
import pandas as pd
import math
import numpy
import sys
import os
import platform
#sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
base_dir = (os.path.abspath(os.path.join(os.path.dirname(__file__), '.')))
if platform.system() == 'Windows':
pickle_dir = '%s\\pickle\\' % (base_dir)
else:
pickle_dir = '%s/pickle/' % (base_dir)
import Wrap_Util
from Test_MariaDB import WrapDB
def FolioneStart(obj):
obj.Start()
class Preprocess (object):
def __init__(self):
self.data_info = None
self.datas = None
self.date_range = {}
self.reference_datas = None
self.pivoted_reference_datas = None
self.sampled_datas = None
self.pivoted_sampled_datas = None
self.init_pivoted_sampled_datas = None
self.filled_pivoted_sampled_datas = None
def SetDataInfo(self, data_info, data_info_columns, data_list=None):
# 정상적인 상황
if data_list == None:
self.data_info = data_info
# 예외적인 상황
# 관련 로직에 대한 확인 필요(2019-11-28, 류상진)
else:
self.data_info = pd.DataFrame(columns=data_info.columns)
count = 0
for data in data_info.transpose():
if data_info.transpose()[data][1] in data_list:
print(data_info.transpose()[data][1])
self.data_info[count] = data_info.transpose()[data]
count += 1
self.data_info = self.data_info.transpose()
self.data_info.columns = data_info_columns
# 최대한 많은 factor를 사용하기 위해 데이터가 존재하는 공통기간을 찾음.
def MakeDateRange(self, start_date, last_date):
for ele in self.data_info:
if ele in (start_date, last_date):
# 시작일의 초기값은 가장 빠른 날짜
if ele == start_date:
self.date_range[ele] = "1111-11-11"
# 마지막일의 초기값은 가장 늦은 날짜
elif ele == last_date:
self.date_range[ele] = "9999-99-99"
# 나머지 element의 경우 패스
else:
continue
for idx in range(0, len(self.data_info[ele])):
if self.data_info[ele][idx]:
# 가장 늦은 시작일을 찾는다.
if ele == start_date and int(self.date_range[ele].replace("-", "")) < int(self.data_info[ele][idx].replace("-", "")):
self.date_range[ele] = self.data_info[ele][idx]
# 가장 빠른 마지막일을 찾는다.
if ele == last_date and int(self.date_range[ele].replace("-", "")) > int(self.data_info[ele][idx].replace("-", "")):
self.date_range[ele] = self.data_info[ele][idx]
def GetDataList(self, item_cd, start_date=None, last_date=None):
# factor명을 통해 factor 코드 리스트 생성
if start_date == None and last_date == None:
return list(self.data_info[item_cd])
# factor명을 통해 factor 코드 리스트 생성
# 사용 가능한 데이터의 유효 범위 설정
else:
return list(self.data_info[item_cd]), self.date_range[start_date], self.date_range[last_date]
def SetDatas(self, datas, datas_columns):
self.datas = datas
self.datas.columns = datas_columns
def MakeSampledDatas(self, sampling_type, index, columns, values):
# date type의 날짜 속성 추가
self.datas["날짜T"] = self.datas[index].apply(lambda x: pd.to_datetime(str(x), format="%Y-%m-%d"))
# datas.set_index(datas['날짜T'], inplace=True)
# Sampling 방법에 따른 데이터 누락을 위해 ref_data 생성
date_list = self.datas.resample('D', on="날짜T", convention="end")
self.reference_datas = self.datas.loc[self.datas["날짜T"].isin(list(date_list.indices))]
self.pivoted_reference_datas = self.reference_datas.pivot(index=index, columns=columns, values=values)
# sampling type
# 'B': business daily, 'D': calendar daily, 'W': weekly, 'M': monthly
sampling_list = self.datas.resample(sampling_type, on="날짜T", convention="end")
self.sampled_datas = self.datas.loc[self.datas["날짜T"].isin(list(sampling_list.indices))]
self.pivoted_sampled_datas = self.sampled_datas.pivot(index=index, columns=columns, values=values)
self.init_pivoted_sampled_datas = copy.deepcopy(self.pivoted_sampled_datas)
if 0:
# 'B': business daily, 'D': calendar daily, 'W': weekly, 'M': monthly
tmp_sampling_list = self.datas.resample('D', on="날짜T", convention="end")
tmp_sampled_datas = self.datas.loc[self.datas["날짜T"].isin(list(tmp_sampling_list.indices))]
tmp_pivoted_sampled_datas = tmp_sampled_datas.pivot(index=index, columns=columns, values=values)
for column in tmp_pivoted_sampled_datas.columns:
for idx, row in enumerate(tmp_pivoted_sampled_datas.index):
if math.isnan(tmp_pivoted_sampled_datas[column][row]) == False:
print(column + '\t' + str((len(tmp_pivoted_sampled_datas.index) - tmp_pivoted_sampled_datas[column].isnull().sum())/(len(tmp_pivoted_sampled_datas.index) - idx)))
break
Wrap_Util.SaveExcelFiles(file='tmp_pivoted_sampled_datas.xlsx', obj_dict={'pivoted_sampled_datas': tmp_pivoted_sampled_datas})
def FillValidData(self, look_back_days, input_data=None):
if input_data is not None:
self.pivoted_sampled_datas = copy.deepcopy(input_data)
for column_nm in self.pivoted_sampled_datas.columns:
for row_nm in self.pivoted_sampled_datas.index:
# Debug
#if row_nm == '1996-02-26' and column_nm == '상해종합':
# print(1)
# 월말 데이터가 없는경우
if math.isnan(self.pivoted_sampled_datas[column_nm][row_nm]) == True:
# print (column_nm, "\t", row_nm, "\t", pivoted_sampled_datas[column_nm][row_nm])
# ref_row_nm = copy.copy(row_nm)
ref_row_nm = row_nm
# 해당일에 데이터가 없는 경우 가장 최근 값을 대신 사용함
for loop_cnt in range(1, look_back_days):
ref_row_nm = str(datetime.strptime(row_nm, '%Y-%m-%d').date() - timedelta(days=loop_cnt))
try:
# 해당 ref date에 데이터가 없는 경우
if math.isnan(self.pivoted_reference_datas[column_nm][ref_row_nm]) == True:
# print("No Data", str(ref_row_nm))
pass
# 가장 최신 데이터를 찾은 경우
else:
self.pivoted_sampled_datas[column_nm][row_nm] = float(self.pivoted_reference_datas[column_nm][ref_row_nm])
break
except KeyError:
# print("KeyError", str(ref_row_nm))
pass
# 여전히 self.pivoted_sampled_datas에 값이 없는 경우 발생 가능
self.filled_pivoted_sampled_datas = copy.deepcopy(self.pivoted_sampled_datas)
def DropInvalidData(self, drop_basis_from, drop_basis_to, lag_shift_yn=False):
# 데이터 유효기간 정의
drop_basis_from = datetime.strptime(drop_basis_from, '%Y-%m-%d').date()
drop_basis_to = datetime.strptime(drop_basis_to, '%Y-%m-%d').date()
# lag가 있는 factor는 평가일로 shift 시킴
if lag_shift_yn == True:
# 데이터 오류에 의해 미래 데이터에 의해 shift되는 경우 삭제
row_list = copy.deepcopy(self.pivoted_sampled_datas.index)
for row in row_list:
data_date = datetime.strptime(row, '%Y-%m-%d').date()
if data_date > drop_basis_to:
self.pivoted_sampled_datas.drop(index=row, inplace=True)
# lag가 발생한 factor는 먼저 shift 시킴
column_list = copy.deepcopy(self.pivoted_sampled_datas.columns)
for column in column_list:
if math.isnan(self.pivoted_sampled_datas[column][-1]) == True:
lag_count = 0
for i in range(1, 13):
if math.isnan(self.pivoted_sampled_datas[column][-i]) == True:
lag_count += 1
else:
break
self.pivoted_sampled_datas[column] = self.pivoted_sampled_datas[column].shift(periods=lag_count)
self.pivoted_sampled_datas = self.pivoted_sampled_datas.fillna(method='ffill', limit=1)
# 유효기간을 벗어난 데이터 삭제
row_list = copy.deepcopy(self.pivoted_sampled_datas.index)
for row in row_list:
data_date = datetime.strptime(row, '%Y-%m-%d').date()
if data_date < drop_basis_from:
self.pivoted_sampled_datas.drop(index=row, inplace=True)
# 3개월 이상 데이터가 누락된 경우 삭제
column_list = copy.deepcopy(self.pivoted_sampled_datas.columns)
for column in column_list:
empty_cnt = 0
for row in self.pivoted_sampled_datas.index:
if math.isnan(self.pivoted_sampled_datas[column][row]) == True:
empty_cnt += 1
else:
empty_cnt = 0
# 3개월 연속으로 데이터 누락이 발생하면 해당 factor 삭제
if empty_cnt >= 3:
self.pivoted_sampled_datas.drop(columns=column, inplace=True)
break
# 마지막으로 누락된 데이터는 이전달 데이터를 복사함
self.pivoted_sampled_datas = self.pivoted_sampled_datas.fillna(method='ffill')
# lag가 있는 factor는 제외시킴
else:
# 유효기간을 벗어난 데이터 삭제
row_list = copy.deepcopy(self.pivoted_sampled_datas.index)
for row in row_list:
data_date = datetime.strptime(row, '%Y-%m-%d').date()
if data_date < drop_basis_from or data_date > drop_basis_to:
self.pivoted_sampled_datas.drop(index=row, inplace=True)
# 유효하지 않은 팩터 drop
total_omission_threshold = 1
last_omission_threshold = 1
last_considerable_num = 6
column_list = copy.deepcopy(self.pivoted_sampled_datas.columns)
for column in column_list:
# 전체 유효기간 중 데이터가 없는 갯수
total_null_cnt = pivoted_sampled_datas[column].isnull().sum()
# 유효기간 중 마지막 특정 기간 내 데이터가 없는 갯수
last_null_cnt = pivoted_sampled_datas[column][-last_considerable_num:].isnull().sum()
if total_null_cnt > total_omission_threshold or last_null_cnt > last_omission_threshold:
# print('유효하지 않은 누락\t', column, '\t', total_null_cnt, '\t', last_null_cnt)
self.pivoted_sampled_datas.drop(columns=column, inplace=True)
# 마지막으로 누락된 데이터는 이전달 데이터를 복사함
self.pivoted_sampled_datas = self.pivoted_sampled_datas.fillna(method='ffill')
def GetPivotedReferenceDatas(self):
return self.pivoted_reference_datas
def GetPivotedSampledDatas(self):
return self.pivoted_sampled_datas
def GetInitPivotedSampledDatas(self):
return self.init_pivoted_sampled_datas
def GetFilledPivotedSampledDatas(self):
return self.filled_pivoted_sampled_datas
class Folione (object):
def __init__(self, raw_data, window_size, simulation_term_type
, profit_calc_start_date, profit_calc_end_date, min_max_check_term, weight_check_term, max_lag_term, max_signal_factors_num, target_index_nm
, use_window_size_pickle=False, use_factor_selection_pickle=False, use_correlation_pickle=False
, make_folione_signal = False
, save_datas_excel=False, save_correlations_txt=False, save_signal_process_db=False, save_signal_last_db=True, use_parallel_process=False):
# Z-Score 생성하기 위한 준비 데이터
# row: 날짜, column: factor
self.raw_data = copy.deepcopy(raw_data)
self.zscore_data = None
# Z-Score를 이용한 One Factor 수익률 데이터
# 1단계: target index, 2단계: factor
self.model_accumulated_profits = {}
self.bm_accumulated_profits = {}
# Z-Score를 이용한 Multi Factor 시그널, Factor 별 수익률이 높은 순으로 Factor 누적
# 1단계: target index, 2단계: 누적 factor, 3단계: 날짜
self.model_signals = {}
# Factor 별 Target Index와 Moving Correlation
# 1단계: rolling month, 2단계: target index, 3단계: factor
self.corr = None
# Folione 고유 파라미터
self.window_size = copy.deepcopy(window_size) # Z-Score 만들기 위한 기간
self.simulation_term_type = copy.deepcopy(simulation_term_type) # 장,중,단기 시뮬레이션
self.profit_calc_start_date = datetime.strptime(profit_calc_start_date, '%Y-%m-%d').date() # Factor 별 누적 수익률 시작일 (장/단기에 따라 변동)
self.profit_calc_end_date = datetime.strptime(profit_calc_end_date,'%Y-%m-%d').date() # Factor 별 누적 수익률 끝일
self.target_index_nm = copy.deepcopy(target_index_nm) # target index, Ex. "MSCI ACWI", "MSCI World", "MSCI EM", "KOSPI", "S&P500", "Nikkei225", "상해종합"
self.min_max_check_term = copy.deepcopy(min_max_check_term) # Min/Max의 평균 Z-Score를 구하기 위한 기간
self.weight_check_term = copy.deepcopy(weight_check_term) # 평균 Z-Score의 Momentum 안정성을 판단하기 위한 기간
self.max_lag_term = copy.deepcopy(max_lag_term) # correlation 계산 시 최대로 줄 수 있는 lag
self.max_signal_factors_num = copy.deepcopy(max_signal_factors_num) # factor 예측 모형에서 사용되는 최대 factor 갯수
# 중간 산출물 재사용 여부 확인 Flag
# 최초 1회는 생성 되어야 하며, data 변경시 재생성 되어야함
self.use_window_size_pickle = copy.deepcopy(use_window_size_pickle) # self.zscore_data 재사용
self.use_factor_selection_pickle = copy.deepcopy(use_factor_selection_pickle) # self.model_accumulated_profits & self.bm_accumulated_profits 재사용
self.use_correlation_pickle = copy.deepcopy(use_correlation_pickle) # self.corr 재사용
# 다중 Factor를 이용한 Signal 생성 여부 Flag
self.make_folione_signal = copy.deepcopy(make_folione_signal)
# Debug용 데이터 저장 여부
self.save_datas_excel = copy.deepcopy(save_datas_excel)
self.save_correlations_txt = copy.deepcopy(save_correlations_txt)
self.save_signal_process_db = copy.deepcopy(save_signal_process_db)
self.save_signal_last_db = copy.deepcopy(save_signal_last_db)
self.use_parallel_process = copy.deepcopy(use_parallel_process)
self.db = WrapDB()
self.db.connet(host="127.0.0.1", port=3306, database="WrapDB_1", user="root", password="ryumaria")
'''
def __del__(self):
self.db.disconnect()
'''
def Start(self):
self.MakeZScore()
self.CalcCorrelation()
self.SelectFactor()
if self.make_folione_signal == True:
if 0:
self.MakeSignal()
else:
self.MakeSignal_AllCombis()
def MakeZScore(self):
if self.use_window_size_pickle == False:
# 해당 row를 window_size에 포함되는 row부터 생성된다.
mean_data = self.raw_data.rolling(window=self.window_size, center=False).mean()
std_data = self.raw_data.rolling(window=self.window_size, center=False).std()
# Z-Score 계산
# 데이터의 변화가 없어 표준편차가 0(ZeroDivisionError)인 경우 때문에 DataFrame을 이용한 연산처리 불가
self.zscore_data = copy.deepcopy(self.raw_data)
for column_nm in self.raw_data.columns:
for row_nm in self.raw_data.index:
'''
# Test 미국 연방기금 목표금리, 2010-12-31
if (column_nm == '미국 연방기금 목표금리' and row_nm == '2010-12-31') or (column_nm == '중국 기준금리' and row_nm == '2014-06-30'):
print ('Test Debug', '\t', column_nm, '\t', row_nm)
'''
try:
self.zscore_data[column_nm][row_nm] = (self.raw_data[column_nm][row_nm] - mean_data[column_nm][row_nm]) / std_data[column_nm][row_nm]
except ZeroDivisionError:
self.zscore_data[column_nm][row_nm] = self.zscore_data[column_nm][prev_row_nm]
except Exception as inst:
print(type(inst)) # the exception instance
print(inst.args) # arguments stored in .args
print(inst)
self.zscore_data[column_nm][row_nm] = self.zscore_data[column_nm][prev_row_nm]
prev_row_nm = row_nm
# simulation 기간에 해당하지 않는 데이터 삭제
row_list = copy.deepcopy(self.raw_data.index)
for idx, row in enumerate(row_list):
#if datetime.strptime(row, '%Y-%m-%d').date() < self.profit_calc_start_date - relativedelta(months=self.window_size):
if idx < self.window_size-1:
#self.raw_data.drop(index=row, inplace=True)
self.zscore_data.drop(index=row, inplace=True)
mean_data.drop(index=row, inplace=True)
std_data.drop(index=row, inplace=True)
Wrap_Util.SavePickleFile(file='%spivoted_sampled_datas_zscore_target_index_%s_start_date_%s_end_date_%s_min_max_check_term_%s_weight_check_term_%s_window_size_%s.pickle'
% (pickle_dir, self.target_index_nm, self.profit_calc_start_date, self.profit_calc_end_date, self.min_max_check_term, self.weight_check_term, self.window_size), obj=self.zscore_data)
if self.save_datas_excel:
Wrap_Util.SaveExcelFiles(file='%ssave_datas_excel_target_index_%s_start_date_%s_end_date_%s_min_max_check_term_%s_weight_check_term_%s_window_size_%s.xlsx'
% (pickle_dir, self.target_index_nm, self.profit_calc_start_date, self.profit_calc_end_date, self.min_max_check_term, self.weight_check_term, self.window_size)
, obj_dict={'raw_data': self.raw_data, 'zscore_data': self.zscore_data, 'mean_data': mean_data, 'std_data': std_data})
else:
self.zscore_data = Wrap_Util.ReadPickleFile(file='%spivoted_sampled_datas_zscore_target_index_%s_start_date_%s_end_date_%s_min_max_check_term_%s_weight_check_term_%s_window_size_%s.pickle'
% (pickle_dir, self.target_index_nm, self.profit_calc_start_date, self.profit_calc_end_date, self.min_max_check_term, self.weight_check_term, self.window_size))
def CalcCorrelation(self):
# 1단계: target index_factor, rolling month 중 최고 값 사용
corr_direction = {}
corr_lag = {}
corr_max = {}
if self.use_correlation_pickle == False:
factors_nm_cd_map = self.db.get_factors_nm_cd()
if self.save_correlations_txt == True:
f = open("%srolling_corr_target_index_%s_start_date_%s_end_date_%s_min_max_check_term_%s_weight_check_term_%s_window_size_%s.txt"
% (pickle_dir, self.target_index_nm, self.profit_calc_start_date, self.profit_calc_end_date, self.min_max_check_term, self.weight_check_term, self.window_size), 'w')
# 상관관계를 계산할 때 raw data 또는 Z-Score를 사용할 지 선택
# Raw Data = 0, Z-Score = 1
using_data_type = 1
using_data = self.zscore_data if using_data_type else self.raw_data
rolling_correlations = {}
# column_nm_1은 Target Index
for column_nm_1 in using_data.columns:
if column_nm_1 == self.target_index_nm:
if self.save_correlations_txt == True:
corr_mtrx_str = "Target Index\t" + str(column_nm_1) + "\n"
# print("Window Size:\t", str(self.window_size), "\t, \t", corr_mtrx_str)
rolling_correlations[column_nm_1] = {}
# column_nm_2은 Factor
for column_nm_2 in using_data.columns:
if column_nm_2 != column_nm_1:
'''
# Test
if column_nm_1 == "금" and column_nm_2 == "USD/AUD":
print("!!!!!!!!!!")
'''
if self.save_correlations_txt == True:
corr_mtrx_str = corr_mtrx_str + column_nm_2 + "\t"
rolling_correlations[column_nm_1][column_nm_2] = {}
# Correlation을 통해 lag와 상관성(정,역) 확인
max_corr = 0.0
max_lag_idx = 0
# 상관성에 대한 초기값 설정
corr_direction[column_nm_1 + "_" + column_nm_2] = 1
corr_max[column_nm_1 + "_" + column_nm_2] = max_corr
corr_lag[column_nm_1 + "_" + column_nm_2] = max_lag_idx
# 상관성을 판단하기 위한 데이터량 정의
use_all_data = True
start_lag = 0 # 모든 펙터에서 최신 데이터를 사용하면 되는 경우 lag를 줄 필요가 없음
data_size_for_corr = len(
using_data.index) - self.max_lag_term if use_all_data == True else self.window_size
for lag_term in range(start_lag, self.max_lag_term + 1):
# 문법상 첫번째 구간(Factor와 Target Index의 lag 없이 동일 시점 적용)은 그냥 처리해야 함
target_data = using_data[column_nm_1][-data_size_for_corr:]
if lag_term == 0:
# pandas의 correation 계산이 안돼 numpy로 변경, 향후 오류 원인 확인 필요
factor_data = using_data[column_nm_2][-data_size_for_corr:]
else:
factor_data = using_data[column_nm_2][-(data_size_for_corr + lag_term):-lag_term]
rolling_correlations[column_nm_1][column_nm_2][lag_term] = \
numpy.corrcoef(target_data.tolist(), factor_data.tolist())[0][1]
# hit ratio 사용 여부
use_hit_ratio = True
if use_hit_ratio == True:
# corr 대신 hit ratio를 이용하여 factor 선택
if math.isnan(rolling_correlations[column_nm_1][column_nm_2][lag_term]) == False:
dates = target_data.index
hit_ratio = 0.0
hit_yn_data = [0] * len(dates)
pos_cnt = 0
neg_cnt = 0
unk_cnt = 0
for i in range(len(dates)):
# factor_data에 shift를 발생시켰기 때문에 key를 사용하지 않고 index를 사용해야함.
target_val = target_data[i]
factor_val = factor_data[i]
# i가 1인 경우부터 선후행관계가 형성됨
if i > 0:
# 기준금리처럼 Factor의 값에 변화가 거의 없는 경우
if factor_val == prev_factor_val:
unk_cnt += 1
pass
# Target과 Factor의 방향이 같은 경우
elif (
target_val > prev_target_val and factor_val > prev_factor_val) or (
target_val < prev_target_val and factor_val < prev_factor_val):
hit_yn_data[i] = 1
pos_cnt += 1
# Target과 Factor의 방향이 다른 경우
else:
hit_yn_data[i] = -1
neg_cnt += 1
prev_target_val = target_val
prev_factor_val = factor_val
total_cnt = pos_cnt + neg_cnt + unk_cnt
if pos_cnt > neg_cnt:
hit_ratio = float(pos_cnt) / total_cnt
elif neg_cnt > pos_cnt:
hit_ratio = float(-neg_cnt) / total_cnt
rolling_correlations[column_nm_1][column_nm_2][lag_term] = hit_ratio
# corr, hit ratio 계산값 저장
self.db.insert_corr(factors_nm_cd_map[column_nm_1], factors_nm_cd_map[column_nm_2], column_nm_1, column_nm_2, str(self.profit_calc_start_date),
str(self.profit_calc_end_date), self.min_max_check_term, self.weight_check_term, self.window_size, lag_term,
float(rolling_correlations[column_nm_1][column_nm_2][lag_term]), float(hit_ratio), using_data_type)
# corr, hit ratio 계산에 사용된 law 데이터 저장
self.db.insert_corr_law_data(factors_nm_cd_map[column_nm_1], factors_nm_cd_map[column_nm_2], column_nm_1, column_nm_2, str(self.profit_calc_start_date),
str(self.profit_calc_end_date), self.min_max_check_term, self.weight_check_term, self.window_size, lag_term,
target_data, factor_data, hit_yn_data, using_data_type)
# Correlation을 통해 lag와 상관성(정,역) 확인
if math.isnan(rolling_correlations[column_nm_1][column_nm_2][lag_term]) == False:
if abs(rolling_correlations[column_nm_1][column_nm_2][lag_term]) > abs(max_corr):
max_corr = rolling_correlations[column_nm_1][column_nm_2][lag_term]
max_lag_idx = lag_term
corr_direction[column_nm_1 + "_" + column_nm_2] = 1 if max_corr > 0.0 else -1
corr_max[column_nm_1 + "_" + column_nm_2] = max_corr
corr_lag[column_nm_1 + "_" + column_nm_2] = max_lag_idx
# print(column_nm_1 + "_" + column_nm_2, '\t', max_lag_idx, '\t', max_corr)
# 해당경우는 factor selection에 사용되지 않도록 처리되어야함.
# 1년 단위로 값이 변경되는 Factor의 경우 corr가 nan이 나오는 경우 있어 초기화 시킴
elif math.isnan(rolling_correlations[column_nm_1][column_nm_2][lag_term]) == True and (
max_corr == 0.0 and max_lag_idx == 0):
corr_direction[column_nm_1 + "_" + column_nm_2] = 1
corr_max[column_nm_1 + "_" + column_nm_2] = max_corr
corr_lag[column_nm_1 + "_" + column_nm_2] = max_lag_idx
if self.save_correlations_txt == True:
corr_mtrx_str = corr_mtrx_str + str(
rolling_correlations[column_nm_1][column_nm_2][lag_term]) + "\t"
if self.save_correlations_txt == True:
corr_mtrx_str = corr_mtrx_str + "\n"
if self.save_correlations_txt == True:
corr_mtrx_str = corr_mtrx_str + "\n"
f.write(corr_mtrx_str)
# print(corr_mtrx_str)
if self.save_correlations_txt == True:
f.close()
# Corr 정보 생성
# 컬럼명은 data의 index를 자동으로 사용함.
self.corr = pd.DataFrame(data=[corr_direction, corr_lag, corr_max], index=['direction', 'lag', 'max'])
Wrap_Util.SavePickleFile(
file='%scorr_target_index_%s_start_date_%s_end_date_%s_min_max_check_term_%s_weight_check_term_%s_window_size_%s.pickle'
% (pickle_dir, self.target_index_nm, self.profit_calc_start_date, self.profit_calc_end_date, self.min_max_check_term, self.weight_check_term, self.window_size), obj=self.corr)
if self.save_datas_excel:
Wrap_Util.SaveExcelFiles(
file='%scorr_excel_target_index_%s_start_date_%s_end_date_%s_min_max_check_term_%s_weight_check_term_%s_window_size_%s.xlsx'
% (pickle_dir, self.target_index_nm, self.profit_calc_start_date, self.profit_calc_end_date, self.min_max_check_term, self.weight_check_term, self.window_size), obj_dict={'corr': self.corr})
else:
self.corr = Wrap_Util.ReadPickleFile(
file='%scorr_target_index_%s_start_date_%s_end_date_%s_min_max_check_term_%s_weight_check_term_%s_window_size_%s.pickle'
% (pickle_dir, self.target_index_nm, self.profit_calc_start_date, self.profit_calc_end_date, self.min_max_check_term, self.weight_check_term, self.window_size))
def SelectFactor(self):
if self.use_factor_selection_pickle == False:
factors_nm_cd_map = self.db.get_factors_nm_cd()
if self.save_datas_excel:
factor_signal_data = copy.deepcopy(self.zscore_data)
average_zscore_data = copy.deepcopy(self.zscore_data)
max_zscore_data = copy.deepcopy(self.zscore_data)
index_nm = self.target_index_nm
# 누적 수익률 저장 공간
self.model_accumulated_profits[index_nm] = {}
self.bm_accumulated_profits[index_nm] = {}
check_first_data = False
for column_nm in self.zscore_data.columns:
if self.save_datas_excel:
factor_signal_data[column_nm].values.fill(0)
average_zscore_data[column_nm].values.fill(0)
max_zscore_data[column_nm].values.fill(0)
try:
# Factor별 수익률 계산
# 현재, Target Index와 Factor가 동일한 경우는 제외한다.
#if column_nm != index_nm:
# Factor가 Target Indext대비 선행성이 없으면 제외한다.
if column_nm != index_nm and int(self.corr[index_nm + "_" + column_nm]['lag']) >= 1:
# 누적 수익률 초기화
self.model_accumulated_profits[index_nm][column_nm] = 1.0
self.bm_accumulated_profits[index_nm][column_nm] = 1.0
model_signal = "BUY"
# Target Index와 Factor의 상관성이 가장 높은 lag를 찾아 적용하는 로직 사용여부
use_factor_lag = True
max_factor_lag = int(max(self.corr.transpose()['lag'].values)) if use_factor_lag == True else 1
# 주식 Buy, Sell 포지션 판단
new_point = self.weight_check_term - 1
average_array = [0] * self.weight_check_term
for i, row_nm in enumerate(self.zscore_data.index):
# 기본적으로 dataframe은 동일 시점(월 말일)에 release된 데이터가 align되어 있다.
# 하지만 Target Index를 Factor를 통해 예측하는 것이 로직의 기본이기 때문에 1이상의 delay가 발생해야함.
# 로직의 기본은 가장 최근 데이터를 이용하여 미래를 예측하는 것이다.
# row_nm(i)은 예측작업을 진행하기 위해 사용되는 데이터의 날짜이다.
# 즉, row_nm(i)에 사용된 데이터를 이용한 결과는 next_row_nm이 되어야 확인될 수 있다.
# 또한, 마지막 예측은 Target Index의 결과를 모르기 때문에 수익률 결과를 알 수 없다.
# factor lag를 적용하면서 사용되는 데이터 사용을 위한 index에 1개월에 delay가 발생하면서 예측을 위해 가장 최근 데이터를 사용하지 못하는 상황 발생.
# 따라서, 데이터의 index에 1을 더해 가장 최근 데이터까지 사용하여 예측을 시도한다.
idx = i + 1
try:
# 과거 moving average 생성 및 시프트
# min_max_check_term 개수 만큼 raw 데이터가 생겨야 average 생성 가능
if idx >= (self.min_max_check_term - 1) + max_factor_lag:
# 최신 데이터를 한칸씩 시프트
average_array[:new_point] = average_array[-new_point:]
# Target Index와 Factor별로 상관성이 가장 높은 lag를 Factor에 적용한다.
factor_lag = int(self.corr[index_nm + "_" + column_nm]['lag']) if use_factor_lag == True else 1
if 0:
average_array[-1] = int(self.corr[index_nm + "_" + column_nm]['direction']) \
* (self.zscore_data[column_nm][idx - factor_lag - (self.min_max_check_term - 1):idx - factor_lag + 1].min()
+ self.zscore_data[column_nm][idx - factor_lag - (self.min_max_check_term - 1):idx - factor_lag + 1].max()) / 2
# 신규 Folione과 동일한 로직(평균 개념), lag 개념 추가
else:
average_array[-1] = int(self.corr[index_nm + "_" + column_nm]['direction']) * self.zscore_data[column_nm][idx - factor_lag - (self.min_max_check_term - 1):idx - factor_lag + 1].mean()
# 수익률 계산 시작
# factor 검증 start date 이후 부터 처리
# weight_check_term 개수 만큼 average 데이터가 생겨야 노이즈 검증 가능
if datetime.strptime(row_nm,'%Y-%m-%d').date() >= self.profit_calc_start_date \
and idx >= ((self.min_max_check_term - 1) + max_factor_lag) + self.weight_check_term:
# 결과적으로 row_nm이 다음달의 signal을 예측하는 시점.
# 마지막 데이터를 이용하여 예측하는 경우는 수익률을 구할 수 없기 때문에 해당시점과 동일한 값을 사용
next_row_nm = self.zscore_data.index[idx] if idx < len(self.zscore_data.index) else row_nm
# Test, Debug용, Window Size에 따라 누적수익률 시작점 확인
if check_first_data == False:
print (index_nm + '를 예측하기 위해 ' + row_nm + '시점부터 예측을 시작(' + str(self.window_size) + ')')
check_first_data = True
if 0:
# 이번 signal의 위치에 맞게 주식비율 조절 매수
ai_profit_rate = 0.0159 / 12 # 예탁이용료 1달 수익률
buy_ratio = (average_array[new_point] - average_array.min()) / (average_array.max() - average_array.min())
if buy_ratio >= 0.0:
self.model_accumulated_profits[index_nm][column_nm] *= (1 + (buy_ratio * (self.raw_data[index_nm][self.window_size + idx] / self.raw_data[index_nm][self.window_size + idx - 1] - 1) + (1 - buy_ratio) * ai_profit_rate))
else:
# 이번 스토어가 max인 경우 매수 시그널
if average_array[-1] >= max(average_array):
self.model_accumulated_profits[index_nm][column_nm] *= (self.raw_data[index_nm][next_row_nm] / self.raw_data[index_nm][row_nm])
# 3단계. 예측 index & factor & 시계열별로 signal을 가진다
model_signal = "BUY"
if self.save_datas_excel:
factor_signal_data[column_nm][row_nm] = 1
else:
model_signal = "SELL"
if self.save_datas_excel:
average_zscore_data[column_nm][row_nm] = average_array[new_point]
max_zscore_data[column_nm][row_nm] = max(average_array)
# z-score의 경우 raw data보다 window_size -1 만큼 적음. window_size부터 z-score 생성됨
self.bm_accumulated_profits[index_nm][column_nm] *= (self.raw_data[index_nm][next_row_nm] / self.raw_data[index_nm][row_nm])
# factor Signal 이력 저장
if 0:
date_info = {'start_dt': str(self.profit_calc_start_date), 'end_dt': str(self.profit_calc_end_date), 'curr_dt': row_nm}
target_cd = factors_nm_cd_map[index_nm]
factor_cd = factors_nm_cd_map[column_nm]
signal_cd = 1 if model_signal == "BUY" else 0
etc = {'min_max_check_term': self.min_max_check_term, 'weight_check_term': self.weight_check_term, 'window_size': self.window_size, 'lag': max_factor_lag,
'factor_profit': float(self.model_accumulated_profits[index_nm][column_nm]), 'index_profit': float(self.bm_accumulated_profits[index_nm][column_nm]),
'score': float(average_array[-1])}
self.db.insert_factor_signal_history(date_info, target_cd, factor_cd, signal_cd,etc)
except IndexError:
print("IndexError:\t", index_nm, '\t', column_nm, '\t', row_nm)
# 모델의 성능이 BM 보다 좋은 팩터 결과만 출력
if self.model_accumulated_profits[index_nm][column_nm] > 1.0 and self.model_accumulated_profits[index_nm][column_nm] > self.bm_accumulated_profits[index_nm][column_nm]:
print(self.window_size, '\t', index_nm, '\t', column_nm, '\t',
#self.corr_max[index_nm + "_" + column_nm], '\t', self.corr_max[index_nm + "_" + column_nm], '\t',
self.model_accumulated_profits[index_nm][column_nm], '\t',
self.bm_accumulated_profits[index_nm][column_nm])
# Factor result DB 저장
if self.save_signal_last_db == True and row_nm == str(self.profit_calc_end_date):
date_info = {'start_dt': str(self.profit_calc_start_date), 'end_dt': str(self.profit_calc_end_date)}
target_cd = factors_nm_cd_map[index_nm]
factor_cd = factors_nm_cd_map[column_nm]
signal_cd = 1 if model_signal == "BUY" else 0
etc = {'min_max_check_term': self.min_max_check_term, 'weight_check_term': self.weight_check_term, 'window_size': self.window_size, 'lag': max_factor_lag,
'factor_profit': float(self.model_accumulated_profits[index_nm][column_nm]), 'index_profit': float(self.bm_accumulated_profits[index_nm][column_nm]),
'score': float(average_array[-1])}
# factor Signal 저장
if self.save_signal_last_db == True and row_nm == str(self.profit_calc_end_date):
self.db.insert_factor_signal(date_info, target_cd, factor_cd, signal_cd, etc)
except KeyError:
print("KeyError: " + index_nm + "_" + column_nm + " " + str(self.window_size))
Wrap_Util.SavePickleFile(file='%smodel_accumulated_profits_target_index_%s_start_date_%s_end_date_%s_min_max_check_term_%s_weight_check_term_%s_window_size_%s.pickle'
% (pickle_dir, self.target_index_nm, self.profit_calc_start_date, self.profit_calc_end_date, self.min_max_check_term, self.weight_check_term, self.window_size), obj=self.model_accumulated_profits)
Wrap_Util.SavePickleFile(file='%sbm_accumulated_profits_target_index_%s_start_date_%s_end_date_%s_min_max_check_term_%s_weight_check_term_%s_window_size_%s.pickle'
% (pickle_dir, self.target_index_nm, self.profit_calc_start_date, self.profit_calc_end_date, self.min_max_check_term, self.weight_check_term, self.window_size), obj=self.bm_accumulated_profits)
if self.save_datas_excel:
Wrap_Util.SaveExcelFiles(file='%sfactor_signal_excel_target_index_%s_start_date_%s_end_date_%s_min_max_check_term_%s_weight_check_term_%s_window_size_%s.xlsx'
% (pickle_dir, self.target_index_nm, self.profit_calc_start_date, self.profit_calc_end_date, self.min_max_check_term, self.weight_check_term, self.window_size)
, obj_dict={'target_index': self.raw_data[index_nm][self.window_size - 1:], 'zscore_data': self.zscore_data, 'factor_signal_data': factor_signal_data
, 'average_zscore_data': average_zscore_data, 'max_zscore_data': max_zscore_data, 'corr': self.corr})
else:
self.model_accumulated_profits = Wrap_Util.ReadPickleFile(file='%smodel_accumulated_profits_target_index_%s_start_date_%s_end_date_%s_min_max_check_term_%s_weight_check_term_%s_window_size_%s.pickle'
% (pickle_dir, self.target_index_nm, self.profit_calc_start_date, self.profit_calc_end_date, self.min_max_check_term, self.weight_check_term, self.window_size))
self.bm_accumulated_profits = Wrap_Util.ReadPickleFile(file='%sbm_accumulated_profits_target_index_%s_start_date_%s_end_date_%s_min_max_check_term_%s_weight_check_term_%s_window_size_%s.pickle'
% (pickle_dir, self.target_index_nm, self.profit_calc_start_date, self.profit_calc_end_date, self.min_max_check_term, self.weight_check_term, self.window_size))
def MakeSignal(self):
if self.save_datas_excel:
model_signal_data = pd.DataFrame(index=self.zscore_data.index)
average_zscore_data = copy.deepcopy(model_signal_data)
max_zscore_data = copy.deepcopy(model_signal_data)
rst_idx_str = ["Window Size", "Target Index", "시작일", "마지막일", "기간(일)", "시그널", "누적 모델 수익률(연환산)","누적 BM 수익률(연환산)", "누적 모델 수익률", "누적 BM 수익률", "펙터(#)", "펙터"]
result_data = pd.DataFrame(index=rst_idx_str)
# Signal 결과 저장
#f = open(".\\pickle\\Signal_target_index_%s_simulation_term_type_%s_window_size_%s_From %s To %s.txt" % (self.target_index_nm, self.simulation_term_type, self.window_size, self.profit_calc_start_date, self.profit_calc_end_date), 'w')
idx_str = "Window Size" + '\t' + "Target Index" + '\t' + "시작일" + '\t' + "마지막일" + '\t' + "기간(일)" + '\t' + "시그널" + '\t' + "누적 모델 수익률(연환산)" + '\t' \
+ "누적 BM 수익률(연환산)" + '\t' + "누적 모델 수익률" + '\t' + "누적 BM 수익률" + '\t' + "펙터(#)" + '\t' + "펙터" + '\n'
#f.write(idx_str)
# 병렬처리 아닌 경우 로그 프린트
if self.use_parallel_process == False:
print(idx_str)
max_signal_factors_num = self.max_signal_factors_num
index_nm = self.target_index_nm
# 1단계. 예측 index별로 container 생성
self.model_signals[index_nm] = {}
model_profitable_factors_sorted = dict(sorted(self.model_accumulated_profits[index_nm].items(), key=operator.itemgetter(1), reverse=True))
signal_factors_nm = ""
simulate_factor_list = []
for profitable_factor in model_profitable_factors_sorted:
# 수익률 관련 메타 정보 저장
check_first_data = False
profit_start_date = '1111-11-11'
profit_end_date = '9999-99-99'
# 최대 factor 갯수는 10개까지 테스트 & BM보다 좋은 수익률을 내는 factor
if len(simulate_factor_list) <= max_signal_factors_num:
if len(simulate_factor_list):
signal_factors_nm = signal_factors_nm + " & " + profitable_factor
else:
signal_factors_nm = profitable_factor
simulate_factor_list.append(profitable_factor)
# 2단계. 예측 index & factor combination별로 container 생성
self.model_signals[index_nm][signal_factors_nm] = {}
if self.save_datas_excel:
model_signal_data[signal_factors_nm] = 0
average_zscore_data[signal_factors_nm] = 0
max_zscore_data[signal_factors_nm] = 0
result_data[signal_factors_nm] = None
else:
break
# 모델을 이용한 누적수익률
accumulated_model_profit = 1.0
accumulated_bm_profit = 1.0
# Correlation lag 사용여부
# FACTOR LAG 사용: 1, 미사용: 0
use_factor_lag = True
max_factor_lag = int(max(self.corr.transpose()['lag'].values)) if use_factor_lag == True else 1
new_point = self.weight_check_term - 1
average_array = [0] * self.weight_check_term
for i, row_nm in enumerate(self.zscore_data.index):
# 한달 이후를 예상하기 위한 것이기 때문에 사용하는 데이터를 한달 delay 시킨다
idx = i+1
try:
# 과거 moving average 생성 및 시프트
# min_max_check_term 개수 만큼 raw 데이터가 생겨야 average 생성 가능
if idx >= (self.min_max_check_term - 1) + max_factor_lag:
average_array[:new_point] = average_array[-new_point:]
average_array[-1] = 0
# 다수 factor를 이용해 모델 예측하는 경우 factor들의 값을 더한 후 평균
for factor in simulate_factor_list:
factor_lag = int(self.corr[index_nm + "_" + factor]['lag']) if use_factor_lag == True else 1
# 과거 Folione과 동일한 로직(중간값 개념), lag 개념 추가
if 0:
average_array[-1] += int(self.corr[index_nm + "_" + factor]['direction']) * \
(self.zscore_data[factor][idx - factor_lag - (self.min_max_check_term - 1):idx - factor_lag + 1].min()
+ self.zscore_data[factor][idx - factor_lag - (self.min_max_check_term - 1):idx - factor_lag + 1].max()) / 2
# 신규 Folione과 동일한 로직(평균 개념), lag 개념 추가
else:
average_array[-1] += int(self.corr[index_nm + "_" + factor]['direction']) * self.zscore_data[factor][idx - factor_lag - (self.min_max_check_term - 1):idx - factor_lag + 1].mean()
average_array[-1] /= len(simulate_factor_list)
# 수익률 계산 시작
# weight_check_term 개수 만큼 average 데이터가 생겨야 노이즈 검증 가능
if datetime.strptime(row_nm, '%Y-%m-%d').date() >= self.profit_calc_start_date \
and idx >= ((self.min_max_check_term - 1) + max_factor_lag) + self.weight_check_term:
# factor를 이용해서 마지막 signal을 뽑는 방법으로 변경
next_row_nm = self.zscore_data.index[idx] if idx < len(self.zscore_data.index) else row_nm
# Test, Debug용, Window Size에 따라 누적수익률 시작점 확인
if check_first_data == False:
#print(self.window_size, index_nm, row_nm)
profit_start_date = row_nm
check_first_data = True
# 조건 만족으로 BUY 포지션
if 0:
# 이번 signal의 위치에 맞게 주식비율 조절 매수
ai_profit_rate = 0.0159 / 12 # 예탁이용료 1달 수익률
buy_ratio = (average_array[new_point] - average_array.min()) / (average_array.max() - average_array.min())
if buy_ratio >= 0.0:
accumulated_model_profit *= (1 + (buy_ratio * (self.raw_data[index_nm][next_row_nm] / self.raw_data[index_nm][row_nm] - 1) + (1 - buy_ratio) * ai_profit_rate))
else:
#if average_array[new_point] == max(average_array):
if average_array[-1] == max(average_array):
# z-score의 경우 raw data보다 window_size -1 만큼 적음. window_size부터 z-score 생성됨
if self.window_size + idx < len(self.raw_data.index):
accumulated_model_profit *= (self.raw_data[index_nm][next_row_nm] / self.raw_data[index_nm][row_nm])
# 3단계. 예측 index & factor combination & 시계열별로 signal을 가진다
self.model_signals[index_nm][signal_factors_nm][row_nm] = "BUY"
if self.save_datas_excel:
model_signal_data[signal_factors_nm][row_nm] = 1
else:
self.model_signals[index_nm][signal_factors_nm][row_nm] = "SELL"
profit_end_date = row_nm
if self.save_datas_excel:
average_zscore_data[signal_factors_nm][row_nm] = average_array[-1]
max_zscore_data[signal_factors_nm][row_nm] = max(average_array)
# z-score의 경우 raw data보다 window_size -1 만큼 적음. window_size부터 z-score 생성됨
#if self.window_size + idx < len(self.raw_data.index):
accumulated_bm_profit *= (self.raw_data[index_nm][next_row_nm] / self.raw_data[index_nm][row_nm])
except IndexError:
print("IndexError:\t", index_nm, '\t', signal_factors_nm, '\t', row_nm)
pass
# 유효 factor들의 combination을 이용하여
if self.save_datas_excel and accumulated_model_profit > accumulated_bm_profit:
profit_period = (datetime.strptime(profit_end_date, '%Y-%m-%d').date() - datetime.strptime(profit_start_date, '%Y-%m-%d').date()).days
result_data[signal_factors_nm]["Window Size"] = self.window_size
result_data[signal_factors_nm]["Target Index"] = index_nm
result_data[signal_factors_nm]["시작일"] = profit_start_date
result_data[signal_factors_nm]["마지막일"] = profit_end_date
result_data[signal_factors_nm]["기간(일)"] = profit_period
result_data[signal_factors_nm]["시그널"] = self.model_signals[index_nm][signal_factors_nm][profit_end_date]
result_data[signal_factors_nm]["누적 모델 수익률(연환산)"] = accumulated_model_profit / profit_period * 365
result_data[signal_factors_nm]["누적 BM 수익률(연환산)"] = accumulated_bm_profit / profit_period * 365
result_data[signal_factors_nm]["누적 모델 수익률"] = accumulated_model_profit
result_data[signal_factors_nm]["누적 BM 수익률"] = accumulated_bm_profit
result_data[signal_factors_nm]["펙터(#)"] = len(simulate_factor_list)
result_data[signal_factors_nm]["펙터"] = signal_factors_nm
signal_str = str(self.window_size) + '\t' + index_nm + '\t' + profit_start_date + '\t' + profit_end_date + '\t' + str(profit_period) + '\t' + self.model_signals[index_nm][signal_factors_nm][profit_end_date] + '\t' \
+ str(accumulated_model_profit / profit_period * 365) + '\t' + str(accumulated_bm_profit / profit_period * 365) + '\t' \
+ str(accumulated_model_profit) + '\t' + str(accumulated_bm_profit) + '\t' + str(len(simulate_factor_list)) + '\t' + signal_factors_nm
# 병렬처리 아닌 경우 로그 프린트
if self.use_parallel_process == False:
print(signal_str)
#signal_str += '\n'
#f.write(signal_str)
#f.close()
if self.save_datas_excel:
Wrap_Util.SaveExcelFiles(file='%smodel_signal_excel_target_index_%s_simulation_term_type_%s_target_date_%s_window_size_%s.xlsx'
% (pickle_dir, self.target_index_nm, self.simulation_term_type, self.profit_calc_end_date, self.window_size)
, obj_dict={'target_index': self.raw_data[index_nm][self.window_size - 1:], 'factor_signal_data': model_signal_data
, 'average_zscore_data': average_zscore_data, 'max_zscore_data': max_zscore_data, 'result_data': result_data, 'corr': self.corr, 'zscore_data': self.zscore_data})
def MakeSignal_AllCombis(self):
factors_nm_cd_map = self.db.get_factors_nm_cd()
if self.save_datas_excel:
model_signal_data = pd.DataFrame(index=self.zscore_data.index)
average_zscore_data = copy.deepcopy(model_signal_data)
max_zscore_data = copy.deepcopy(model_signal_data)
rst_idx_str = ["Window Size", "Target Index", "시작일", "마지막일", "기간(일)", "시그널", "누적 모델 수익률(연환산)", "누적 BM 수익률(연환산)", "누적 모델 수익률", "누적 BM 수익률", "펙터(#)", "펙터"]
result_data = pd.DataFrame(index = rst_idx_str)
# Signal 결과 저장
#f = open(".\\pickle\\Signal_target_index_%s_simulation_term_type_%s_window_size_%s_From %s To %s.txt" % (self.target_index_nm, self.simulation_term_type, self.window_size, self.profit_calc_start_date,self.profit_calc_end_date), 'w')
idx_str = "Window Size" + '\t' + "Target Index" + '\t' + "시작일" + '\t' + "마지막일" + '\t' + "기간(일)" + '\t' + "시그널" + '\t' + "누적 모델 수익률(연환산)" + '\t' \
+ "누적 BM 수익률(연환산)" + '\t' + "누적 모델 수익률" + '\t' + "누적 BM 수익률" + '\t' + "펙터(#)" + '\t' + "펙터" + '\n'
#f.write(idx_str)
# 병렬처리 아닌 경우 로그 프린트
if self.use_parallel_process == False:
print(idx_str)
max_signal_factors_num = self.max_signal_factors_num
index_nm = self.target_index_nm
# 결과 DB 저장시 기존 생성 내용 삭제
if self.save_signal_process_db == True:
table_nm = "result"
self.db.delete_folione_signal(table_nm, int(factors_nm_cd_map[index_nm]), str(self.profit_calc_start_date), str(self.profit_calc_end_date), int(self.min_max_check_term), int(self.weight_check_term), int(self.window_size))
if self.save_signal_last_db == True:
table_nm = "result_last"
self.db.delete_folione_signal(table_nm, int(factors_nm_cd_map[index_nm]), str(self.profit_calc_start_date), str(self.profit_calc_end_date), int(self.min_max_check_term), int(self.weight_check_term), int(self.window_size))
# 1단계. 예측 index별로 container 생성
self.model_signals[index_nm] = {}
# reverse가 True이면 내림차순, False이면 올림차순
model_profitable_factors_sorted = dict(sorted(self.model_accumulated_profits[index_nm].items(), key=operator.itemgetter(1), reverse=True))
# combination factor 갯수
accumulated_profits = {}
for ele_count in range(1, max_signal_factors_num+1):