聚宽jointquant写策略常用的函数
Posted cqi77
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了聚宽jointquant写策略常用的函数相关的知识,希望对你有一定的参考价值。
#初始化的一些东西
set_benchmark(‘000300.XSHG‘) set_option(‘use_real_price‘, True) 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‘)
df = attribute_history(stock, g.p2)#返回值,是一个DataFrame,g.p2是过去多少天的数据。 ma10 = df[‘close‘].mean()#求均值 ma5 = df[‘close‘][-5:].mean()#切片,求均值
以上是关于聚宽jointquant写策略常用的函数的主要内容,如果未能解决你的问题,请参考以下文章