第一部分 新手入门
- 一 量化投资视频学习课程
- 二 Python 手把手教学
- 量化分析师的Python日记【第1天:谁来给我讲讲Python?】
- 量化分析师的Python日记【第2天:再接着介绍一下Python呗】
- 量化分析师的Python日记【第3天:一大波金融Library来袭之numpy篇】
- 量化分析师的Python日记【第4天:一大波金融Library来袭之scipy篇】
- 量化分析师的Python日记【第5天:数据处理的瑞士军刀pandas】
- 量化分析师的Python日记【第6天:数据处理的瑞士军刀pandas下篇
- 量化分析师的Python日记【第7天:Q Quant 之初出江湖】
- 量化分析师的Python日记【第8天 Q Quant兵器谱之函数插值】
- 量化分析师的Python日记【第9天 Q Quant兵器谱之二叉树】
- 量化分析师的Python日记【第10天 Q Quant兵器谱 -之偏微分方程1】
- 量化分析师的Python日记【第11天 Q Quant兵器谱之偏微分方程2】
- 量化分析师的Python日记【第12天:量化入门进阶之葵花宝典:因子如何产生和回测】
- 量化分析师的Python日记【第13天 Q Quant兵器谱之偏微分方程3】
- 量化分析师的Python日记【第14天:如何在优矿上做Alpha对冲模型】
- 量化分析师的Python日记【第15天:如何在优矿上搞一个wealthfront出来】
第二部分 股票量化相关
- 一 基本面分析
- 1.1 alpha 多因子模型
- 1.2 基本面因子选股
- 1.3 财报阅读 • [米缸量化读财报] 资产负债表-投资相关资产
- 1.4 股东分析
- 1.5 宏观研究
- 二 套利
- 三 事件驱动
- 四 技术分析
- 4.1 布林带
- 4.2 均线系统
- 4.3 MACD
- 4.4 阿隆指标 • 技术指标阿隆( Aroon )全解析
- 4.5 CCI • CCI 顺势指标探索
- 4.6 RSI
- 4.7 DMI • DMI 指标体系的构建及简单应用
- 4.8 EMV • EMV 技术指标的构建及应用
- 4.9 KDJ • KDJ 策略
- 4.10 CMO
- 4.11 FPC • FPC 指标选股
- 4.12 Chaikin Volatility
- 4.13 委比 • 实时计算委比
- 4.14 封单量
- 4.15 成交量 • 决战之地, IF1507 !
- 4.16 K 线分析 • 寻找夜空中最亮的星
- 五 量化模型
- 5.1 动量模型
- 5.2 Joseph Piotroski 9 F-Score Value Investing Model
- 5.3 SVR
- 5.4 决策树、随机树
- 5.5 钟摆理论
- 5.6 海龟模型
- 5.7 5217 策略
- 5.8 SMIA
- 5.9 神经网络
- 5.10 PAMR
- 5.11 Fisher Transform
- 5.12 分型假说, Hurst 指数
- 5.13 变点理论
- 5.14 Z-score Model
- 5.15 机器学习
- 5.16 DualTrust 策略和布林强盗策略
- 5.17 卡尔曼滤波
- 5.18 LPPL anti-bubble model
- 六 大数据模型
- 6.1 市场情绪分析
- 6.2 新闻热点
- 七 排名选股系统
- 八 轮动模型
- 九 组合投资
- 十 波动率
- 十一 算法交易
- 十二 中高频交易
- 十三 Alternative Strategy
第三部分 基金、利率互换、固定收益类
- 一 分级基金
- 二 基金分析
- 三 债券
- 四 利率互换
第四部分 衍生品相关
- 一 期权数据
- 二 期权系列
- 三 期权分析
- 四 期货分析
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
羊驼策略
策略实现
羊驼做为上古十大神兽之一, 选股祥瑞, 名号响亮, 本策略由一个羊驼类负责每周生成买入卖出信号, 验证羊驼是否名实相符.
- 投资域 :沪深300成分股
- 业绩基准 :沪深300指数
- 调仓频率 :5个交易日
- 买入卖出信号 :初始时任意买10只羊驼,每次调仓时,剔除收益最差的一只羊驼,再任意买一只羊驼.
- 回测周期 :2014年1月1日至2015年5月5日
import numpy as np
import operator
from datetime import datetime
start = datetime(2010, 1, 1)
end = datetime(2015, 5, 5)
benchmark = 'HS300'
universe = set_universe('HS300')
capital_base = 100000
longest_history = 10
refresh_rate = 5
def initialize(account):
account.stocks_num = 10
def handle_data(account):
hist_prices = account.get_attribute_history('closePrice', 5)
yangtuos = list(YangTuo(set(account.universe)-set(account.valid_secpos.keys()), account.stocks_num))
cash = account.cash
if account.stocks_num == 1:
hist_returns = {}
for stock in account.valid_secpos:
hist_returns[stock] = hist_prices[stock][-1]/hist_prices[stock][0]
sorted_returns = sorted(hist_returns.items(), key=operator.itemgetter(1))
sell_stock = sorted_returns[0][0]
cash = account.cash + hist_prices[sell_stock][-1]*account.valid_secpos.get(sell_stock)
order_to(sell_stock, 0)
else:
account.stocks_num = 1
for stock in yangtuos:
order(stock, cash/len(yangtuos)/hist_prices[stock][-1])
class YangTuo:
def __init__(self, caoyuan=[], count=10):
self.count = count
self.i = 0
self.caoyuan = list(caoyuan)
def __iter__(self):
return self
def next(self):
if self.i < self.count:
self.i += 1
return self.caoyuan.pop(np.random.randint(len(self.caoyuan)))
else:
raise StopIteration()
也许你会说,这只是运气好,并不能说明羊驼的厉害啊!好,接下来我们运行100次,看看羊驼的威力.
start = datetime(2010, 1, 1)
end = datetime(2015, 5, 5)
benchmark = 'HS300'
universe = set_universe('HS300')
capital_base = 100000
sim_params = quartz.sim_condition.env.SimulationParameters(start, end, benchmark, universe, capital_base)
idxmap_all, data_all = quartz.sim_condition.data_generator.get_daily_data(sim_params)
import numpy as np
import operator
longest_history = 10
refresh_rate = 5
def initialize(account):
account.stocks_num = 10
def handle_data(account):
hist_prices = account.get_attribute_history('closePrice', 5)
yangtuos = list(YangTuo(set(account.universe)-set(account.valid_secpos.keys()), account.stocks_num))
cash = account.cash
if account.stocks_num == 1:
hist_returns = {}
for stock in account.valid_secpos:
hist_returns[stock] = hist_prices[stock][-1]/hist_prices[stock][0]
sorted_returns = sorted(hist_returns.items(), key=operator.itemgetter(1))
sell_stock = sorted_returns[0][0]
cash = account.cash + hist_prices[sell_stock][-1]*account.valid_secpos.get(sell_stock)
order_to(sell_stock, 0)
else:
account.stocks_num = 1
for stock in yangtuos:
order(stock, cash/len(yangtuos)/hist_prices[stock][-1])
class YangTuo:
def __init__(self, caoyuan=[], count=10):
self.count = count
self.i = 0
self.caoyuan = list(caoyuan)
def __iter__(self):
return self
def next(self):
if self.i < self.count:
self.i += 1
return self.caoyuan.pop(np.random.randint(len(self.caoyuan)))
else:
raise StopIteration()
strategy = quartz.sim_condition.strategy.TradingStrategy(initialize, handle_data)
perfs = []
for i in xrange(100):
bt, acct = quartz.quick_backtest(sim_params, strategy, idxmap_all, data_all, refresh_rate = refresh_rate, longest_history=longest_history)
perf = quartz.perf_parse(bt, acct)
perfs.append(perf)
from matplotlib import pylab
import seaborn
x = sorted([p['annualized_return']-p['benchmark_annualized_return'] for p in perfs])
pylab.plot(x)
pylab.plot([0]*len(x))
[<matplotlib.lines.Line2D at 0x7702a10>]
100%的胜率! 大家闭着眼睛,跟着羊驼买就行了!
接下来的工作:
由于指数并没有分红等概念, 直接拿HS300指数做benchmark, 对HS300并不公平. 所以接下来考虑把benchmark换成某只指数基金, 再做对比.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论