基于Python的指数基金量化投资 - 指数投资技巧(三)不定期定额

指数投资方式中有四种基本的方法,分别是定期定额、定期不定额、不定期定额和不定期不定额,这四种方式投资效果不同,对投资者的要求也不同,定期定额最简单,但收益不算高,不定期不定额最复杂,对投资者的要求最高,特别是对情绪的要求非常高,同时收益也是最好的。

在上一篇《基于Python的指数基金量化投资- 指数投资技巧(二)定期不定额》中已经介绍了定期不定额的方式,这里接着介绍第三种不定期定额的情况和具体的量化过程。

不定期定额的方式和前面介绍的定期定额、定期不定额有着本质的区别,定期定额和定期不定额都是固定时间进行投资,而不定期定额投资的时间是不定的,要根据具体的指数估值进行,例如当指数的估值百分位低于某一个阈值,比如30%的时候,就会启动投资,如果一直低于该阈值,则采用类似定投的方式,按日、按周或者按月进行,一般采用按周的方式;如果估值高于该阈值则立即停止投资,直到指数估值再次落入该阈值范围内后会再次启动投资。

这里以沪深300指数进行举例说明,当沪深300指数的估值百分位低于某个阈值,这里以30%作为例子,当低于该阈值后,则开始进行沪深300的投资,每次投入的资金是等量的,同时按周进行投入,只要沪深300当下的估值百分位不高于30%,则一直执行该操作,如果沪深300的估值百分位高于30%则停止投资。

这种方式的好处是能在低位积累更多的筹码,让投资都集中在底部,但对投资的耐心有一定的要求,比如等待指数进行击球区,同时上涨超过该阈值后不进行追高,这两方面都是有点反人性的,所以不定期定额在实际投资过程中会比前面介绍的定期定额、定期不定额更难。

下面通过用中证全指的数据进行量化测试来看看具体的过程。

具体的策略是下面的三个条件:

1)估值百分位低于30%则启动投资;

2)投资按周进行;

3)每次买入1000元;

4)当估值高于80%时全仓卖出;

通过这种方式可以得到下面的量化结果。

图中上半部分蓝线是指数走势,红点是按估值百分位低于30%并按周投资的位置,每次投资的数额是是一样的;而几个紫色的点表示估值高于80%卖出的位置。

下半部分的图表示总资产、已投入资金和持有基金份额,其中红线时总资产,蓝线是已投入资金,橙线是持有基金份额。开始阶段不断买入持有份额和总资产是重合的,随着买入的增多同时指数上涨,红线橙线逐步高于蓝线,当估值超过预设的门限,则投入的资金暂停,蓝线也不再增长,在2015年初左右估值高于80%则卖出,可以看见橙线变为0,也就是全仓卖出,然后红线、蓝线和橙线持续保持了一段时间的水平走势,也就是这区间没有任何投入,资产、资金和份额都没有变化,接下来在2018年左右又开始进行投资,在2020年底左右卖出。

最后可以看出投入的资金是144000元,整体资产是25148.39,收益是74.62%,比定期定额和定期不定额的收益高出了不少。

在接下来最后一篇的不定期不定额会和大家分享最后一种投资方式,这种方式的投资效果最好,但也最考验投资者。

源码

import pandas as pd

import numpy as np

import matplotlib.pyplot as plt

import math as math


name_index = 'lxr_1000002'

name_index_g = 'g_lxr'

all_data_index =pd.read_csv('./exportfile/indexDataAll/' + name_index + '.csv')

all_data_index_g =pd.read_csv('./importfile/indexSeries/indexValuation/g/' + name_index_g +'.csv')


calc_range = 2500

calc_gap = 5

data_index_p = all_data_index['close'].values[len(all_data_index['close'])- calc_range:len(all_data_index['close']):calc_gap]

data_index_g =all_data_index_g['pe'].values[len(all_data_index_g['pe']) -calc_range:len(all_data_index_g['pe']):calc_gap]

val_percentage_list = list()


sell_flag_no_regular_quota = 0



def NoRegularQuota(val_percentage,val_data_p, buy_cnt, buy_total_share):

   global sell_flag_no_regular_quota

   if val_percentage <= 0.3:

       sell_flag_no_regular_quota = 0

       buy_each_no_regular_quota = 1000

       buy_each_share = buy_each_no_regular_quota / val_data_p

       buy_total_share = buy_total_share + buy_each_share

       buy_cnt = buy_cnt + 1

       plot_y = val_data_p

       plot_x = i

       plot_flag = 1

   elif val_percentage >= 0.8 and sell_flag_no_regular_quota == 0:

       sell_flag_no_regular_quota = 1

       buy_each_share = -buy_total_share

       buy_total_share = 0

       plot_y = val_data_p

        plot_x = i

       plot_flag = -1

   else:

       buy_each_share = 0

       plot_y = val_data_p

       plot_x = i

       plot_flag = 0


   return buy_each_share, buy_cnt, [plot_flag, plot_x, plot_y],buy_total_share



gap = 5 # invest each week

cnt = 0


buy_each_share_no_regular_quota =np.zeros((len(data_index_p), 1))

buy_total_share_list_no_regular_quota =np.zeros((len(data_index_p), 1))

buy_total_money_list_no_regular_quota =np.zeros((len(data_index_p), 1))

buy_cnt_no_regular_quota = 0

plot_no_regular_quota =np.zeros((len(data_index_p), 3))


# idx_start = 974 #2011-1-4

idx_start = 1

for i in range(len(data_index_p)):

   valuation_len =all_data_index_g['pe'].values[len(all_data_index['close']) -calc_range-500:len(all_data_index['close']) - calc_range+i*calc_gap:calc_gap]

   val_loc = np.where(valuation_len < data_index_g[i])

   val_percentage = len(val_loc[0]) / (len(valuation_len))

   val_percentage_list.append(val_percentage)


   buy_each_no_regular_quota = 1000

   buy_each_share_no_regular_quota[i], buy_cnt_no_regular_quota,plot_no_regular_quota[i], buy_total_share_no_regular_quota\

       = NoRegularQuota(val_percentage,data_index_p[i],buy_cnt_no_regular_quota, sum(buy_each_share_no_regular_quota))

   buy_total_share_list_no_regular_quota[i] =sum(buy_each_share_no_regular_quota) * data_index_p[i]

   buy_total_money_list_no_regular_quota[i] = buy_cnt_no_regular_quota *buy_each_no_regular_quota


earn_total_money_no_regular_quota =np.zeros((len(data_index_p), 1))

money_sell_no_regular_quota = 0

for i in range(len(data_index_p)):

   if buy_each_share_no_regular_quota[i] < 0:

       money_sell_no_regular_quota = money_sell_no_regular_quota -buy_each_share_no_regular_quota[i] * data_index_p[i]

   earn_total_money_no_regular_quota[i] =sum(buy_each_share_no_regular_quota[0:i+1]) * data_index_p[i] +money_sell_no_regular_quota


plt_gap = 10

size_title = 28

size_label = 15

size_line = 3

size_rotation = 15

size_buy_plot = 5


plt.figure()

plt.rcParams["axes.grid"] = True

plt.rcParams['font.sans-serif'] =['Microsoft YaHei']

plt.rcParams['axes.unicode_minus'] = False

plt.rcParams["grid.linestyle"] =(3, 5)

plt.subplot(211)


income = 100 *(earn_total_money_no_regular_quota[-1][0] - buy_total_money_list_no_regular_quota[-1][0])/ buy_total_money_list_no_regular_quota[-1][0]

plt.title('不定期定额 | 投资收益= ' + str("{:.2f}".format(income)) + '%',size=15)

# plt.plot(buy_each_share_no_regular_quota)


v_max = max(data_index_p)

v_min = min(data_index_p)


for i in range(len(plot_no_regular_quota)):

   if plot_no_regular_quota[i][0] == 1:

       plt.plot(plot_no_regular_quota[i][1],plot_no_regular_quota[i][2],color='tomato',marker='o',ms=(size_buy_plot*v_max/plot_no_regular_quota[i][2]))

   elif plot_no_regular_quota[i][0] == -1:

       plt.plot(plot_no_regular_quota[i][1], plot_no_regular_quota[i][2],color='purple', marker='o',ms=10)

plt.plot(data_index_p)

plt_xticks =all_data_index['date'].values[len(all_data_index['close']) -calc_range:len(all_data_index['close']):calc_gap].tolist()

plt.xticks(range(len(plt_xticks),0,-math.floor(len(plt_xticks)/plt_gap)),plt_xticks[len(plt_xticks):0:-math.floor(len(plt_xticks)/plt_gap)],rotation=size_rotation)

plt.tick_params(labelsize=size_label)


plt.subplot(212)

plt.plot(buy_total_share_list_no_regular_quota,color='tomato')

font = {'size': 15, 'color': 'tomato','weight': 'black'}

plt.text(len(buy_total_share_list_no_regular_quota),buy_total_share_list_no_regular_quota[-1][0],str("{:.2f}".format(buy_total_share_list_no_regular_quota[-1][0])),fontdict=font)

plt.plot(len(buy_total_share_list_no_regular_quota)-1,buy_total_share_list_no_regular_quota[-1][0],color='tomato', marker='o')


plt.plot(buy_total_money_list_no_regular_quota,color='cornflowerblue')

font = {'size': 15, 'color':'cornflowerblue', 'weight': 'black'}

plt.text(len(buy_total_money_list_no_regular_quota),buy_total_money_list_no_regular_quota[-1][0],str("{:.2f}".format(buy_total_money_list_no_regular_quota[-1][0])),fontdict=font)

plt.plot(len(buy_total_money_list_no_regular_quota)-1,buy_total_money_list_no_regular_quota[-1][0],color='cornflowerblue', marker='o')


plt.plot(earn_total_money_no_regular_quota,color='red')

font = {'size': 15, 'color': 'red','weight': 'black'}

plt.text(len(earn_total_money_no_regular_quota),earn_total_money_no_regular_quota[-1][0],str("{:.2f}".format(earn_total_money_no_regular_quota[-1][0])),fontdict=font)

plt.plot(len(earn_total_money_no_regular_quota)-1,earn_total_money_no_regular_quota[-1][0],color='red', marker='o')


plt_xticks =all_data_index['date'].values[len(all_data_index['close']) -calc_range:len(all_data_index['close']):calc_gap].tolist()

plt.xticks(range(len(plt_xticks),0,-math.floor(len(plt_xticks)/plt_gap)),plt_xticks[len(plt_xticks):0:-math.floor(len(plt_xticks)/plt_gap)],rotation=size_rotation)

plt.tick_params(labelsize=size_label)


plt.show()


程序中用到的数据如果有问题,大家可以留言获取,欢迎大家一起交流沟通^_^

课程参考:网易云课堂  基于Python的量化指数基金投资

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,794评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,050评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,587评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,861评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,901评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,898评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,832评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,617评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,077评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,349评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,483评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,199评论 5 341
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,824评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,442评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,632评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,474评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,393评论 2 352

推荐阅读更多精彩内容