-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathvscode_test.py
943 lines (805 loc) · 42 KB
/
vscode_test.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
# coding: utf-8
##### 下方代码为 IDE 运行必备代码 #####
import jqdata
if __name__ == '__main__':
import jqsdk
params = {
'token': '88e0627cf5b11e6e988637de1f3be8e8', # 在客户端系统设置中找,字符串格式,例如 'asdf...'
'algorithmId': 6, # 在客户端我的策略中,整数型,例如:1;回测结束后在客户端此ID策略的回测列表中找对应的回测结果
'baseCapital': 100000,
'frequency': 'day',
'startTime': '2017-06-01',
'endTime': '2017-08-01',
'name': "费雪选股",
}
jqsdk.run(params)
##### 下面是策略代码编辑部分 #####
# 克隆自聚宽文章:https://www.joinquant.com/post/7029
# 标题:小费雪选股法(终)
# 作者:小兵哥
#enable_profile()
import numpy as np
import talib
import pandas
import scipy as sp
import scipy.optimize
import datetime as dt
from scipy import linalg as sla
from scipy import spatial
# from jqdata import gta
from jqdata import jy as gta
from jqdata import *
import smtplib
from email.mime.text import MIMEText
from email.header import Header
import statsmodels.api as sm
def initialize(context):
#用沪深 300 做回报基准
set_benchmark('000300.XSHG')
# 滑点、真实价格
set_slippage(FixedSlippage(0.000))
set_option('use_real_price', True)
# 关闭部分log
log.set_level('order', 'error')
run_daily(fun_main, '10:30')
def after_code_changed(context):
# 变量都挪到 after_code_changed 里
g.quantlib = quantlib()
# 策略起停标志位
g.quantlib.fun_set_var(context, 'algo_enable', True)
# 定义风险敞口
g.quantlib.fun_set_var(context, 'riskExposure', 0.03)
# 正态分布概率表,标准差倍数以及置信率
# 1.96, 95%; 2.06, 96%; 2.18, 97%; 2.34, 98%; 2.58, 99%; 5, 99.9999%
g.quantlib.fun_set_var(context, 'confidencelevel', 1.96)
# 调仓参数
g.quantlib.fun_set_var(context, 'hold_cycle', 30)
g.quantlib.fun_set_var(context, 'hold_periods', 0)
g.quantlib.fun_set_var(context, 'stock_list', [])
g.quantlib.fun_set_var(context, 'position_price', {})
g.quantlib.fun_set_var(context, 'recal_periods', 0)
g.quantlib.fun_set_var(context, 'version', 1.0)
if context.version < 1.0:
context.hold_periods = 0
context.riskExposure = 0.03
context.version = 1.0
def before_trading_start(context):
# 定义股票池
moneyfund = ['511880.XSHG','511010.XSHG','511220.XSHG']
# 上市不足 60 天的剔除掉
context.moneyfund = g.quantlib.fun_delNewShare(context, moneyfund, 60)
def fun_main(context):
# 引用 lib
g.value_factor = value_factor_lib()
# g.quantlib = quantlib()
context.msg = ""
# 检查是否需要调仓
rebalance_flag, context.position_price, context.hold_periods, msg = \
g.quantlib.fun_needRebalance('algo', context.moneyfund, context.stock_list, context.position_price, \
context.hold_periods, context.hold_cycle, 0.25)
context.msg += msg
statsDate = context.current_dt.date() - dt.timedelta(1)
#context.algo_enable, context.recal_periods, rebalance_flag = g.quantlib.fun_check_algo(context.algo_enable, context.recal_periods, rebalance_flag, statsDate)
trade_style = False # True 会交易进行类似 100股的买卖,False 则只有在仓位变动 >25% 的时候,才产生交易
if rebalance_flag:
stock_list = []
if context.algo_enable:
#获取坏股票列表,将会剔除
# bad_stock_list = g.quantlib.fun_get_bad_stock_list(statsDate)
# 低估值策略
value_factor_stock_list = g.value_factor.fun_get_stock_list(context, 5, statsDate, None)
stock_list = value_factor_stock_list
# 分配仓位
equity_ratio, bonds_ratio = g.quantlib.fun_assetAllocationSystem(stock_list, context.moneyfund, context.confidencelevel, statsDate)
risk_ratio = 0
if len(equity_ratio.keys()) >= 1:
risk_ratio = context.riskExposure / len(equity_ratio.keys())
# 分配头寸,根据预设的风险敞口,计算交易时的比例
position_ratio = g.quantlib.fun_calPosition(equity_ratio, bonds_ratio, 1.0, risk_ratio, context.moneyfund, context.portfolio.portfolio_value, context.confidencelevel, statsDate)
trade_style = True
context.stock_list = position_ratio.keys()
# 更新待购价格
context.position_price = g.quantlib.fun_update_positions_price(position_ratio)
# 卖掉已有且不在待购清单里的股票
for stock in context.portfolio.positions.keys():
if stock not in position_ratio:
position_ratio[stock] = 0
context.position_ratio = position_ratio
print(position_ratio)
# 调仓,执行交易
g.quantlib.fun_do_trade(context, context.position_ratio, context.moneyfund, trade_style)
class value_factor_lib():
def fun_get_stock_list(self, context, hold_number, statsDate=None, bad_stock_list=[]):
relative_ps = self.fun_get_relative_ps(context, statsDate)
low_ps = self.fun_get_low_ps(context, statsDate)
good_stock_list = list(set(relative_ps) & set(low_ps))
# 取净利润增长率为正的
df = g.quantlib.get_fundamentals_sum('income', income.net_profit, statsDate)
df = df.drop(['0Q', '1Q', '2Q', '3Q'], axis=1)
df.rename(columns={'sum_value':'ttm_1y'}, inplace=True)
df1 = g.quantlib.get_fundamentals_sum('income', income.net_profit, (statsDate - dt.timedelta(365)))
df1 = df1.drop(['0Q', '1Q', '2Q', '3Q'], axis=1)
df1.rename(columns={'sum_value':'ttm_2y'}, inplace=True)
df = df.merge(df1, on='code')
df = df.fillna(value=0)
df['inc_net_profit'] = 1.0*(df['ttm_1y'] - df['ttm_2y'])
df = df[df.inc_net_profit > 0]
inc_net_profit_list = list(df.code)
good_stock_list = list(set(good_stock_list) & set(inc_net_profit_list))
print(len(good_stock_list))
# 按行业取营业收入增长率前 1/3
df = g.quantlib.get_fundamentals_sum('income', income.operating_revenue, statsDate)
df = df.drop(['0Q', '1Q', '2Q', '3Q'], axis=1)
df.rename(columns={'sum_value':'ttm_1y'}, inplace=True)
df1 = g.quantlib.get_fundamentals_sum('income', income.operating_revenue, (statsDate - dt.timedelta(365)))
df1 = df1.drop(['0Q', '1Q', '2Q', '3Q'], axis=1)
df1.rename(columns={'sum_value':'ttm_2y'}, inplace=True)
df = df.merge(df1, on='code')
df = df.fillna(value=0)
df['inc_operating_revenue'] = 1.0*(df['ttm_1y'] - df['ttm_2y']) / abs(df['ttm_2y'])
df = df.fillna(value = 0)
industry_list = g.quantlib.fun_get_industry(cycle=None)
#industry_list = g.quantlib.fun_get_industry_levelI()
inc_operating_revenue_list = []
for industry in industry_list:
stock_list = g.quantlib.fun_get_industry_stocks(industry, 2, statsDate)
df_inc_operating_revenue = df[df.code.isin(stock_list)]
df_inc_operating_revenue = df_inc_operating_revenue.sort_values(by='inc_operating_revenue', ascending=False)
inc_operating_revenue_list = inc_operating_revenue_list + list(df_inc_operating_revenue[:int(len(df_inc_operating_revenue)*0.33)].code)
good_stock_list = list(set(good_stock_list) & set(inc_operating_revenue_list))
print(len(good_stock_list))
# 指标剔除资产负债率相对行业最高的1/3的股票
df = get_fundamentals(query(balance.code, balance.total_liability, balance.total_assets), date = statsDate)
df = df.fillna(value=0)
df['liability_ratio'] = 1.0*(df['total_liability'] / df['total_assets'])
industry_list = g.quantlib.fun_get_industry(cycle=None)
#industry_list = g.quantlib.fun_get_industry_levelI()
liability_ratio_list = []
for industry in industry_list:
stock_list = g.quantlib.fun_get_industry_stocks(industry, 2, statsDate)
df_liability_ratio = df[df.code.isin(stock_list)]
df_liability_ratio = df_liability_ratio.sort_values(by='liability_ratio', ascending=True)
liability_ratio_list = liability_ratio_list + list(df_liability_ratio[:int(len(df_liability_ratio)*0.66)].code)
good_stock_list = list(set(good_stock_list) & set(liability_ratio_list))
# 剔除净利润率相对行业最低的1/3的股票;
df = get_fundamentals(query(indicator.code, indicator.net_profit_to_total_revenue ), date = statsDate)
df = df.fillna(value=0)
industry_list = g.quantlib.fun_get_industry(cycle=None)
#industry_list = g.quantlib.fun_get_industry_levelI()
profit_ratio_list = []
for industry in industry_list:
stock_list = g.quantlib.fun_get_industry_stocks(industry, 2, statsDate)
df_profit_ratio = df[df.code.isin(stock_list)]
df_profit_ratio = df_profit_ratio.sort_values('net_profit_to_total_revenue', ascending=False)
profit_ratio_list = profit_ratio_list + list(df_profit_ratio[:int(len(df_profit_ratio)*0.66)].code)
good_stock_list = list(set(good_stock_list) & set(profit_ratio_list))
stock_list = []
for stock in relative_ps:
#for stock in low_ps:
if stock in good_stock_list:
stock_list.append(stock)
print(len(good_stock_list))
positions_list = context.portfolio.positions.keys()
stock_list = g.quantlib.unpaused(stock_list, positions_list)
stock_list = g.quantlib.remove_st(stock_list, statsDate)
stock_list = g.quantlib.fun_delNewShare(context, stock_list, 30)
stock_list = stock_list[:hold_number*10]
stock_list = g.quantlib.remove_bad_stocks(stock_list, bad_stock_list)
stock_list = g.quantlib.remove_limit_up(stock_list, positions_list)
stock_list = g.quantlib.fun_diversity_by_industry(stock_list, int(hold_number*0.4), statsDate)
return stock_list[:hold_number]
def fun_get_relative_ps(self, context, statsDate=None):
def __fun_get_ps(statsDate, deltamonth):
__df = get_fundamentals(query(valuation.code, valuation.ps_ratio), date = (statsDate - dt.timedelta(30*deltamonth)))
__df.rename(columns={'ps_ratio':deltamonth}, inplace=True)
return __df
for i in range(48):
df1 = __fun_get_ps(statsDate, i)
if i == 0:
df = df1
else:
df = df.merge(df1, on='code')
df.index = list(df['code'])
df = df.drop(['code'], axis=1)
df = df.fillna(value=0, axis=0)
# 1. 计算相对市收率,相对市收率等于个股市收率除以全市场的市收率,这样处理的目的是为了剔除市场估值变化的影响
for i in range(len(df.columns)):
s = df.iloc[:,i]
median = s.median()
df.iloc[:,i] = s / median
length, stock_list, stock_dict = len(df), list(df.index), {}
# 2. 计算相对市收率N个月的移动平均值的N个月的标准差,并据此计算布林带上下轨(N个月的移动平均值+/-N个月移动平均的标准差)。N = 24
for i in range(length):
s = df.iloc[i,:]
if s.min() < 0:
pass
else:
# tmp_list 是24个月的相对市收率均值
tmp_list = []
for j in range(24):
tmp_list.append(s[j:j+24].mean())
# mean_value 是最近 24个月的相对市收率均值
mean_value = tmp_list[0]
# std_value 是相对市收率24个月的移动平均值的24个月的标准差
std_value = np.std(tmp_list)
tmp_dict = {}
# (mean_value - std_value),是布林线下轨(此处定义和一般布林线不一样,一般是 均线 - 2 倍标准差)
'''
研报原始的策略,选择 s[0] < mean_value - std_value 的标的,但因为 ps_ratio十分不稳定,跳跃很大,此区间里的测试结果非常不稳定
本策略退而求其次,选择均线-1倍标准差 和 均线 - 2 倍标准差之间的标的
大致反映策略的有效性
'''
if s[0] > (mean_value - 2.0*std_value) and s[0] < mean_value:
# 记录 相对市收率均值 / 当期相对市收率
stock_dict[stock_list[i]] = (1.0*mean_value/s[0])
stock_list = []
dict_score = stock_dict
dict_score = sorted(dict_score.items(), key=lambda d:d[1], reverse=True)
for idx in dict_score:
stock = idx[0]
stock_list.append(stock)
return stock_list
def fun_get_low_ps(self, context, statsDate=None):
df = get_fundamentals(
query(valuation.code, valuation.ps_ratio),
date = statsDate
)
# 根据 sp 去极值、中性化、标准化后,跨行业选最佳的标的
industry_list = g.quantlib.fun_get_industry(cycle=None)
df = df.fillna(value = 0)
sp_ratio = {}
df['SP'] = 1.0/df['ps_ratio']
df = df.drop(['ps_ratio'], axis=1)
for industry in industry_list:
tmpDict = g.quantlib.fun_get_factor(df, 'SP', industry, 2, statsDate).to_dict()
for stock in tmpDict.keys():
if stock in sp_ratio:
if sp_ratio[stock] < tmpDict[stock]:
sp_ratio[stock] = tmpDict[stock]
else:
sp_ratio[stock] = tmpDict[stock]
dict_score = sorted(sp_ratio.items(), key=lambda d:d[1], reverse=True)
stock_list = []
for idx in dict_score:
stock = idx[0]
stock_list.append(stock)
return stock_list[:int(len(stock_list)*0.5)]
# class quantlib():
# def get_fundamentals_sum(self, table_name='indicator', search='indicator.adjusted_profit', statsDate=None):
# # 取最近的五个季度财报的日期
# def __get_quarter(table_name, statsDate):
# '''
# 返回最近 n 个财报的日期
# 返回每个股票最近一个财报的日期
# '''
# # 取最新一季度的统计日期
# if table_name == 'indicator':
# q = query(indicator.code, indicator.statDate)
# elif table_name == 'income':
# q = query(income.code, income.statDate)
# elif table_name == 'cash_flow':
# q = query(cash_flow.code, cash_flow.statDate)
# elif table_name == 'balance':
# q = query(balance.code, balance.statDate)
# df = get_fundamentals(q, date = statsDate)
# stock_last_statDate = {}
# tmpDict = df.to_dict()
# for i in range(len(tmpDict['statDate'].keys())):
# # 取得每个股票的代码,以及最新的财报发布日
# stock_last_statDate[tmpDict['code'][i]] = tmpDict['statDate'][i]
# df = df.sort_values(by='statDate', ascending=False)
# # 取得最新的财报日期
# last_statDate = df.iloc[0,1]
# this_year = int(str(last_statDate)[0:4])
# this_month = str(last_statDate)[5:7]
# if this_month == '12':
# last_quarter = str(this_year) + 'q4'
# last_two_quarter = str(this_year) + 'q3'
# last_three_quarter = str(this_year) + 'q2'
# last_four_quarter = str(this_year) + 'q1'
# last_five_quarter = str(this_year - 1) + 'q4'
# elif this_month == '09':
# last_quarter = str(this_year) + 'q3'
# last_two_quarter = str(this_year) + 'q2'
# last_three_quarter = str(this_year) + 'q1'
# last_four_quarter = str(this_year - 1) + 'q4'
# last_five_quarter = str(this_year - 1) + 'q3'
# elif this_month == '06':
# last_quarter = str(this_year) + 'q2'
# last_two_quarter = str(this_year) + 'q1'
# last_three_quarter = str(this_year - 1) + 'q4'
# last_four_quarter = str(this_year - 1) + 'q3'
# last_five_quarter = str(this_year - 1) + 'q2'
# else: #this_month == '03':
# last_quarter = str(this_year) + 'q1'
# last_two_quarter = str(this_year - 1) + 'q4'
# last_three_quarter = str(this_year - 1) + 'q3'
# last_four_quarter = str(this_year - 1) + 'q2'
# last_five_quarter = str(this_year - 1) + 'q1'
# return last_quarter, last_two_quarter, last_three_quarter, last_four_quarter, last_five_quarter, stock_last_statDate
# # 查财报,返回指定值
# def __get_fundamentals_value(table_name, search, myDate):
# '''
# 输入查询日期
# 返回指定的财务数据,格式 dict
# '''
# if table_name == 'indicator':
# q = query(indicator.code, search, indicator.statDate)
# elif table_name == 'income':
# q = query(income.code, search, income.statDate)
# elif table_name == 'cash_flow':
# q = query(cash_flow.code, search, cash_flow.statDate)
# elif table_name == 'balance':
# q = query(balance.code, search, balance.statDate)
# df = get_fundamentals(q, statDate = myDate).fillna(value=0)
# tmpDict = df.to_dict()
# stock_dict = {}
# name = str(search).split('.')[-1]
# for i in range(len(tmpDict['statDate'].keys())):
# tmpList = []
# tmpList.append(tmpDict['statDate'][i])
# tmpList.append(tmpDict[name][i])
# stock_dict[tmpDict['code'][i]] = tmpList
# return stock_dict
# # 得到最近 n 个季度的统计时间
# last_quarter, last_two_quarter, last_three_quarter, last_four_quarter, last_five_quarter, stock_last_statDate = __get_quarter(table_name, statsDate)
# last_quarter_dict = __get_fundamentals_value(table_name, search, last_quarter)
# last_two_quarter_dict = __get_fundamentals_value(table_name, search, last_two_quarter)
# last_three_quarter_dict = __get_fundamentals_value(table_name, search, last_three_quarter)
# last_four_quarter_dict = __get_fundamentals_value(table_name, search, last_four_quarter)
# last_five_quarter_dict = __get_fundamentals_value(table_name, search, last_five_quarter)
# tmp_list = []
# stock_list = stock_last_statDate.keys()
# for stock in stock_list:
# tmp_dict = {}
# tmp_dict['code'] = stock
# value_list = []
# if stock in last_quarter_dict:
# if stock_last_statDate[stock] == last_quarter_dict[stock][0]:
# value_list.append(last_quarter_dict[stock][1])
# if stock in last_two_quarter_dict:
# value_list.append(last_two_quarter_dict[stock][1])
# if stock in last_three_quarter_dict:
# value_list.append(last_three_quarter_dict[stock][1])
# if stock in last_four_quarter_dict:
# value_list.append(last_four_quarter_dict[stock][1])
# if stock in last_five_quarter_dict:
# value_list.append(last_five_quarter_dict[stock][1])
# for i in range(4 - len(value_list)):
# value_list.append(0)
# tmp_dict['0Q'] = value_list[0]
# tmp_dict['1Q'] = value_list[1]
# tmp_dict['2Q'] = value_list[2]
# tmp_dict['3Q'] = value_list[3]
# tmp_dict['sum_value'] = value_list[0] + value_list[1] + value_list[2] + value_list[3]
# tmp_list.append(tmp_dict)
# df = pd.DataFrame(tmp_list)
# return df
# def fun_set_var(self, context, var_name, var_value):
# if var_name not in dir(context):
# setattr(context, var_name, var_value)
# def fun_check_price(self, algo_name, stock_list, position_price, gap_trigger):
# flag = False
# msg = ""
# if stock_list:
# h = history(1, '1d', 'close', stock_list, df=False)
# for stock in stock_list:
# curPrice = h[stock][0]
# if stock not in position_price:
# position_price[stock] = curPrice
# oldPrice = position_price[stock]
# if oldPrice != 0:
# deltaprice = abs(curPrice - oldPrice)
# if deltaprice / oldPrice > gap_trigger:
# msg = algo_name + "需要调仓: " + stock + ",现价: " + str(curPrice) + " / 原价格: " + str(oldPrice) + "\n"
# flag = True
# return flag, position_price, msg
# return flag, position_price, msg
# def fun_needRebalance(self, algo_name, moneyfund, stock_list, position_price, hold_periods, hold_cycle, gap_trigger):
# msg = ""
# rebalance_flag = False
# stocks_count = 0
# for stock in stock_list:
# if stock not in moneyfund:
# stocks_count += 1
# if stocks_count == 0:
# msg += algo_name + "调仓,因为持股数为 0 \n"
# rebalance_flag = True
# elif hold_periods == 0:
# msg += algo_name + "调仓,因为持股天数剩余为 0 \n"
# rebalance_flag = True
# if not rebalance_flag:
# rebalance_flag, position_price, msg2 = self.fun_check_price(algo_name, stock_list, position_price, gap_trigger)
# msg += msg2
# if rebalance_flag:
# hold_periods = hold_cycle
# else:
# hold_periods -= 1
# msg += algo_name + "离下次调仓还剩 " + str(hold_periods) + " 天\n"
# return rebalance_flag, position_price, hold_periods, msg
# # 更新持有股票的价格,每次调仓后跑一次
# def fun_update_positions_price(self, ratio):
# position_price = {}
# if ratio:
# h = history(1, '1m', 'close', ratio.keys(), df=False)
# for stock in ratio.keys():
# if ratio[stock] > 0:
# position_price[stock] = round(h[stock][0], 3)
# return position_price
# def fun_assetAllocationSystem(self, stock_list, moneyfund, confidencelevel, statsDate=None):
# def __fun_getEquity_ratio(__stocklist, confidencelevel, type, limit_up=1.0, limit_low=0.0, statsDate=None):
# __ratio = {}
# if __stocklist:
# if type == 1: #风险平价 历史模拟法
# # 正态分布概率表,标准差倍数以及置信率
# # 1.96, 95%; 2.06, 96%; 2.18, 97%; 2.34, 98%; 2.58, 99%; 5, 99.9999%
# __ratio = self.fun_calStockWeight_by_risk(confidencelevel, __stocklist, limit_up, limit_low, statsDate)
# elif type == 2: #马科维奇
# __ratio = self.fun_calStockWeight(__stocklist, limit_up, limit_low)
# elif type == 3: #最小方差
# __ratio = self.fun_cal_Weight_by_minvar(__stocklist, limit_up, limit_low)
# elif type == 5: # 风险平价 方差-协方差法
# __ratio = self.fun_calWeight_by_RiskParity(__stocklist, statsDate)
# else: #等权重
# for stock in __stocklist:
# __ratio[stock] = 1.0/len(__stocklist)
# return __ratio
# if stock_list:
# limit_up, limit_low = round(2.0/len(list(set(stock_list))), 4), round(0.5/len(list(set(stock_list))), 4)
# equity_ratio = __fun_getEquity_ratio(stock_list, confidencelevel, 0, limit_up, limit_low, statsDate)
# else:
# equity_ratio = {}
# bonds_ratio = __fun_getEquity_ratio(moneyfund, confidencelevel, 0, 1.0, 0.0, statsDate)
# return equity_ratio, bonds_ratio
# def fun_calPosition(self, equity_ratio, bonds_ratio, algo_ratio, risk_ratio, moneyfund, portfolio_value, confidencelevel, statsDate=None):
# '''
# equity_ratio 资产配仓结果
# bonds_ratio 债券配仓结果
# algo_ratio 策略占市值的百分比
# risk_ratio 每个标的承受的风险系数
# '''
# trade_ratio = equity_ratio # 简化
# return trade_ratio
# # 去极值
# def fun_winsorize(self, rs, type, num):
# # rs为Series化的数据
# rs = rs.dropna().copy()
# low_line, up_line = 0, 0
# if type == 1: # 标准差去极值
# mean = rs.mean()
# #取极值
# mad = num*rs.std()
# up_line = mean + mad
# low_line = mean - mad
# elif type == 2: #中位值去极值
# rs = rs.replace([-np.inf, np.inf], np.nan)
# median = rs.median()
# md = abs(rs - median).median()
# mad = md * num * 1.4826
# up_line = median + mad
# low_line = median - mad
# elif type == 3: #Boxplot 去极值
# if len(rs) < 2:
# return rs
# mc = sm.stats.stattools.medcouple(rs)
# rs.sort()
# q1 = rs[int(0.25*len(rs))]
# q3 = rs[int(0.75*len(rs))]
# iqr = q3-q1
# if mc >= 0:
# low_line = q1-1.5*np.exp(-3.5*mc)*iqr
# up_line = q3+1.5*np.exp(4*mc)*iqr
# else:
# low_line = q1-1.5*np.exp(-4*mc)*iqr
# up_line = q3+1.5*np.exp(3.5*mc)*iqr
# rs[rs < low_line] = low_line
# rs[rs > up_line] = up_line
# return rs
# #标准化
# def fun_standardize(self, s,type):
# '''
# s为Series数据
# type为标准化类型:1 MinMax,2 Standard,3 maxabs
# '''
# data=s.dropna().copy()
# if int(type)==1:
# rs = (data - data.min())/(data.max() - data.min())
# elif type==2:
# rs = (data - data.mean())/data.std()
# elif type==3:
# rs = data/10**np.ceil(np.log10(data.abs().max()))
# return rs
# #中性化
# def fun_neutralize(self, s, df, module='pe_ratio', industry_type=None, level=2, statsDate=None):
# '''
# 参数:
# s为stock代码 如'000002.XSHE' 可为list,可为str
# moduel:中性化的指标 默认为PE
# industry_type:行业类型(可选), 如果行业不指定,全市场中性化
# 返回:
# 中性化后的Series index为股票代码 value为中性化后的值
# '''
# s = df[df.code.isin(list(s))]
# s = s.reset_index(drop = True)
# s = pd.Series(s[module].values, index=s['code'])
# s = self.fun_winsorize(s,1,3)
# if industry_type:
# stocks = self.fun_get_industry_stocks(industry=industry_type, level=level, statsDate=statsDate)
# else:
# stocks = list(get_all_securities(['stock'], date=statsDate).index)
# df = df[df.code.isin(stocks)]
# df = df.reset_index(drop = True)
# df = pd.Series(df[module].values, index=df['code'])
# df = self.fun_winsorize(df,1, 3)
# rs = (s - df.mean())/df.std()
# return rs
# def fun_get_factor(self, df, factor_name, industry, level, statsDate):
# stock_list = self.fun_get_industry_stocks(industry, level, statsDate)
# rs = self.fun_neutralize(stock_list, df, module=factor_name, industry_type=industry, level=level, statsDate=statsDate)
# rs = self.fun_standardize(rs, 2)
# return rs
# def fun_diversity_by_industry(self, stock_list, max_num, statsDate):
# if not stock_list:
# return stock_list
# industry_list = self.fun_get_industry(cycle=None)
# tmpList = []
# for industry in industry_list:
# i = 0
# stocks = self.fun_get_industry_stocks(industry, 2, statsDate)
# for stock in stock_list:
# if stock in stocks: #by 行业选入 top max_num 的标的(如有)
# i += 1
# if i <= max_num:
# tmpList.append(stock) #可能一个股票横跨多个行业,会导致多次入选,但不影响后面计算
# final_stocks = []
# for stock in stock_list:
# if stock in tmpList:
# final_stocks.append(stock)
# return final_stocks
# # 根据行业取股票列表
# def fun_get_industry_stocks(self, industry, level=2, statsDate=None):
# if level == 2:
# stock_list = get_industry_stocks(industry, statsDate)
# elif level == 1:
# industry_list = self.fun_get_industry_levelI(industry)
# stock_list = []
# for industry_code in industry_list:
# tmpList = get_industry_stocks(industry_code, statsDate)
# stock_list = stock_list + tmpList
# stock_list = list(set(stock_list))
# else:
# stock_list = []
# return stock_list
# # 一级行业列表
# def fun_get_industry_levelI(self, industry=None):
# industry_dict = {
# 'A':['A01', 'A02', 'A03', 'A04', 'A05'] #农、林、牧、渔业
# ,'B':['B06', 'B07', 'B08', 'B09', 'B11'] #采矿业
# ,'C':['C13', 'C14', 'C15', 'C17', 'C18', 'C19', 'C20', 'C21', 'C22', 'C23', 'C24', 'C25', 'C26', 'C27', 'C28', 'C29', 'C30', 'C31', 'C32',\
# 'C33', 'C34', 'C35', 'C36', 'C37', 'C38', 'C39', 'C40', 'C41', 'C42'] #制造业
# ,'D':['D44', 'D45', 'D46'] #电力、热力、燃气及水生产和供应业
# ,'E':['E47', 'E48', 'E50'] #建筑业
# ,'F':['F51', 'F52'] #批发和零售业
# ,'G':['G53', 'G54', 'G55', 'G56', 'G58', 'G59'] #交通运输、仓储和邮政业
# ,'H':['H61', 'H62'] #住宿和餐饮业
# ,'I':['I63', 'I64', 'I65'] #信息传输、软件和信息技术服务业
# ,'J':['J66', 'J67', 'J68', 'J69'] #金融业
# ,'K':['K70'] #房地产业
# ,'L':['L71', 'L72'] #租赁和商务服务业
# ,'M':['M73', 'M74'] #科学研究和技术服务业
# ,'N':['N78'] #水利、环境和公共设施管理业
# #,'O':[] #居民服务、修理和其他服务业
# ,'P':['P82'] #教育
# ,'Q':['Q83'] #卫生和社会工作
# ,'R':['R85', 'R86', 'R87'] #文化、体育和娱乐业
# ,'S':['S90'] #综合
# }
# if industry == None:
# return industry_dict
# else:
# return industry_dict[industry]
# # 行业列表
# def fun_get_industry(self, cycle=None):
# # cycle 的参数:None取所有行业,True取周期性行业,False取非周期性行业
# industry_dict = {
# 'A01':False,# 农业 1993-09-17
# 'A02':False,# 林业 1996-12-06
# 'A03':False,# 畜牧业 1997-06-11
# 'A04':False,# 渔业 1993-05-07
# 'A05':False,# 农、林、牧、渔服务业 1997-05-30
# 'B06':True, # 煤炭开采和洗选业 1994-01-06
# 'B07':True, # 石油和天然气开采业 1996-06-28
# 'B08':True, # 黑色金属矿采选业 1997-07-08
# 'B09':True, # 有色金属矿采选业 1996-03-20
# 'B11':True, # 开采辅助活动 2002-02-05
# 'C13':False, # 农副食品加工业 1993-12-15
# 'C14':False,# 食品制造业 1994-08-18
# 'C15':False,# 酒、饮料和精制茶制造业 1992-10-12
# 'C17':True,# 纺织业 1992-06-16
# 'C18':True,# 纺织服装、服饰业 1993-12-31
# 'C19':True,# 皮革、毛皮、羽毛及其制品和制鞋业 1994-04-04
# 'C20':False,# 木材加工及木、竹、藤、棕、草制品业 2005-05-10
# 'C21':False,# 家具制造业 1996-04-25
# 'C22':False,# 造纸及纸制品业 1993-03-12
# 'C23':False,# 印刷和记录媒介复制业 1994-02-24
# 'C24':False,# 文教、工美、体育和娱乐用品制造业 2007-01-10
# 'C25':True, # 石油加工、炼焦及核燃料加工业 1993-10-25
# 'C26':True, # 化学原料及化学制品制造业 1990-12-19
# 'C27':False,# 医药制造业 1993-06-29
# 'C28':True, # 化学纤维制造业 1993-07-28
# 'C29':True, # 橡胶和塑料制品业 1992-08-28
# 'C30':True, # 非金属矿物制品业 1992-02-28
# 'C31':True, # 黑色金属冶炼及压延加工业 1994-01-06
# 'C32':True, # 有色金属冶炼和压延加工业 1996-02-15
# 'C33':True, # 金属制品业 1993-11-30
# 'C34':True, # 通用设备制造业 1992-03-27
# 'C35':True, # 专用设备制造业 1992-07-01
# 'C36':True, # 汽车制造业 1992-07-24
# 'C37':True, # 铁路、船舶、航空航天和其它运输设备制造业 1992-03-31
# 'C38':True, # 电气机械及器材制造业 1990-12-19
# 'C39':False,# 计算机、通信和其他电子设备制造业 1990-12-19
# 'C40':False,# 仪器仪表制造业 1993-09-17
# 'C41':True, # 其他制造业 1992-08-14
# 'C42':False,# 废弃资源综合利用业 2012-10-26
# 'D44':True, # 电力、热力生产和供应业 1993-04-16
# 'D45':False,# 燃气生产和供应业 2000-12-11
# 'D46':False,# 水的生产和供应业 1994-02-24
# 'E47':True, # 房屋建筑业 1993-04-29
# 'E48':True, # 土木工程建筑业 1994-01-28
# 'E50':True, # 建筑装饰和其他建筑业 1997-05-22
# 'F51':False,# 批发业 1992-05-06
# 'F52':False,# 零售业 1992-09-02
# 'G53':True, # 铁路运输业 1998-05-11
# 'G54':True, # 道路运输业 1991-01-14
# 'G55':True, # 水上运输业 1993-11-19
# 'G56':True, # 航空运输业 1997-11-05
# 'G58':True, # 装卸搬运和运输代理业 1993-05-05
# 'G59':False,# 仓储业 1996-06-14
# 'H61':False,# 住宿业 1993-11-18
# 'H62':False,# 餐饮业 1997-04-30
# 'I63':False,# 电信、广播电视和卫星传输服务 1992-12-02
# 'I64':False,# 互联网和相关服务 1992-05-07
# 'I65':False,# 软件和信息技术服务业 1992-08-20
# 'J66':True, # 货币金融服务 1991-04-03
# 'J67':True, # 资本市场服务 1994-01-10
# 'J68':True, # 保险业 2007-01-09
# 'J69':True, # 其他金融业 2012-10-26
# 'K70':True, # 房地产业 1992-01-13
# 'L71':False,# 租赁业 1997-01-30
# 'L72':False,# 商务服务业 1996-08-29
# 'M73':False,# 研究和试验发展 2012-10-26
# 'M74':True, # 专业技术服务业 2007-02-15
# 'N77':False,# 生态保护和环境治理业 2012-10-26
# 'N78':False,# 公共设施管理业 1992-08-07
# 'P82':False,# 教育 2012-10-26
# 'Q83':False,# 卫生 2007-02-05
# 'R85':False,# 新闻和出版业 1992-12-08
# 'R86':False,# 广播、电视、电影和影视录音制作业 1994-02-24
# 'R87':False,# 文化艺术业 2012-10-26
# 'S90':False,# 综合 1990-12-10
# }
# industry_list = []
# if cycle == True:
# for industry in industry_dict.keys():
# if industry_dict[industry] == True:
# industry_list.append(industry)
# elif cycle == False:
# for industry in industry_dict.keys():
# if industry_dict[industry] == False:
# industry_list.append(industry)
# else:
# industry_list = industry_dict.keys()
# return industry_list
# def fun_do_trade(self, context, trade_ratio, moneyfund, trade_style):
# def __fun_tradeBond(context, stock, curPrice, Value):
# curValue = float(context.portfolio.positions[stock].total_amount * curPrice)
# deltaValue = abs(Value - curValue)
# if deltaValue > (curPrice*200):
# if Value > curValue:
# cash = context.portfolio.cash
# if cash > (curPrice*200):
# self.fun_trade(context, stock, Value)
# else:
# self.fun_trade(context, stock, Value)
# def __fun_tradeStock(context, curPrice, stock, ratio, trade_style):
# total_value = context.portfolio.portfolio_value
# if stock in moneyfund:
# __fun_tradeBond(context, stock, curPrice, total_value * ratio)
# else:
# curValue = context.portfolio.positions[stock].total_amount * curPrice
# Quota = total_value * ratio
# if Quota:
# if abs(Quota - curValue) / Quota >= 0.25 or trade_style:
# if Quota > curValue:
# #if curPrice > context.portfolio.positions[stock].avg_cost:
# self.fun_trade(context, stock, Quota)
# else:
# self.fun_trade(context, stock, Quota)
# else:
# if curValue > 0:
# self.fun_trade(context, stock, Quota)
# trade_list = trade_ratio.keys()
# myholdstock = context.portfolio.positions.keys()
# stock_list = list(set(trade_list).union(set(myholdstock)))
# total_value = context.portfolio.portfolio_value
# # 已有仓位
# holdDict = {}
# h = history(1, '1d', 'close', stock_list, df=False)
# for stock in myholdstock:
# tmp = (context.portfolio.positions[stock].total_amount * h[stock])/total_value
# # print('w:',tmp)
# tmpW = round(tmp[0], 2)
# holdDict[stock] = float(tmpW)
# # 对已有仓位做排序已有仓位做排序
# tmpDict = {}
# for stock in holdDict:
# if stock in trade_ratio:
# tmpDict[stock] = round((trade_ratio[stock] - holdDict[stock]), 2)
# tradeOrder = sorted(tmpDict.items(), key=lambda d:d[1], reverse=False)
# # 交易已有仓位的股票,从减仓的开始,腾空现金
# _tmplist = []
# for idx in tradeOrder:
# stock = idx[0]
# __fun_tradeStock(context, h[stock][-1], stock, trade_ratio[stock], trade_style)
# _tmplist.append(stock)
# # 交易新股票
# # for i in range(len(trade_list)):
# for stock in trade_list:
# # stock = trade_list[i]
# if len(_tmplist) != 0 :
# if stock not in _tmplist:
# __fun_tradeStock(context, h[stock][-1], stock, trade_ratio[stock], trade_style)
# else:
# __fun_tradeStock(context, h[stock][-1], stock, trade_ratio[stock], trade_style)
# def unpaused(self, stock_list, positions_list):
# current_data = get_current_data()
# tmpList = []
# for stock in stock_list:
# if not current_data[stock].paused or stock in positions_list:
# tmpList.append(stock)
# return tmpList
# def remove_st(self, stock_list, statsDate):
# current_data = get_current_data()
# return [s for s in stock_list if not current_data[s].is_st]
# def remove_limit_up(self, stock_list, positions_list):
# h = history(1, '1m', 'close', stock_list, df=False, skip_paused=False, fq='pre')
# h2 = history(1, '1m', 'high_limit', stock_list, df=False, skip_paused=False, fq='pre')
# tmpList = []
# for stock in stock_list:
# if h[stock][0] < h2[stock][0] or stock in positions_list:
# tmpList.append(stock)
# return tmpList
# def fun_get_bad_stock_list(self, statsDate):
# #0、剔除商誉占比 > 10% 的股票
# df = get_fundamentals(
# query(valuation.code, balance.good_will, balance.equities_parent_company_owners),
# date = statsDate
# )
# df = df.fillna(value = 0)
# df['good_will_ratio'] = 1.0*df['good_will'] / df['equities_parent_company_owners']
# list_good_will = list(df[df.good_will_ratio > 0.1].code)
# bad_stocks = list_good_will
# bad_stocks = list(set(bad_stocks))
# return bad_stocks
# def remove_bad_stocks(self, stock_list, bad_stock_list):
# tmpList = []
# for stock in stock_list:
# if stock not in bad_stock_list:
# tmpList.append(stock)
# return tmpList
# # 剔除上市时间较短的产品
# def fun_delNewShare(self, context, equity, deltaday):
# deltaDate = context.current_dt.date() - dt.timedelta(deltaday)
# tmpList = []
# for stock in equity:
# if get_security_info(stock).start_date < deltaDate:
# tmpList.append(stock)
# return tmpList
# def fun_trade(self, context, stock, value):
# self.fun_setCommission(context, stock)
# order_target_value(stock, value)
# def fun_setCommission(self, context, stock):
# if stock in context.moneyfund:
# set_order_cost(OrderCost(open_tax=0, close_tax=0, open_commission=0, close_commission=0, close_today_commission=0, min_commission=0), type='fund')
# else:
# set_order_cost(OrderCost(open_tax=0, close_tax=0.001, open_commission=0.0003, close_commission=0.0003, close_today_commission=0, min_commission=5), type='stock')