start = pd.datetime(2013, 11, 1)
end = pd.datetime(2014, 11, 1)
benchmark = 'HS300'
universe = read('3b_ticker.txt').split(',')
capital_base = 100000
csvs = ['3b_news.csv']
def initialize(account):
add_history('hist1', 1)
def handle_data(account, data):
for stock in universe:
if (stock not in account.hist1) or ('emotion' not in account.hist1[stock].columns):
continue
sig = account.hist1[stock].iloc[0,:]['emotion']
if sig > 0.2 and account.position.stkpos.get(stock, 0)==0:
order(stock, 100)
elif sig < 0 and account.position.stkpos.get(stock, 0)>0:
order_to(stock, 0)
年化收益率
24.4%
基准年化收益率
5.3%
阿尔法
0.19
贝塔
0.77
夏普比率
1.08
收益波动率
0.19
信息比率
1.18
最大回撤
17.9%
原帖地址:
https://uqer.io/community/share/548111daf9f06c8e7733670a
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
https://www.v2ex.com/t/204776
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.