国泰君安alpha191中的count、regbeta、regresi三个函数
由small_q创建,最终由small_q 被浏览 70 用户
问题
国泰君安alpha191中的count、regbeta、regresi三个函数怎么定义?
视频
https://www.bilibili.com/video/BV1ov4y1Z7Yg?p=2&share_source=copy_web
\
策略源码
# 国泰君安 Count(a, n),过去5天close_0 > close_1 的天数
conditions = where(close_0 > close_1, 1, 0)
count_ = sum(conditions, 5)
# # 国泰君安 Regbeta(a, b, n),return_0 对 close_0 的回归系数
regbeta = ta_beta(return_0, close_0, 5)
# 国泰君安 Regresi(a, b, n) (与ta_beta中的n相对应)
regresi = return_0 - regbeta * close_0
策略案例
https://bigquant.com/experimentshare/6dc58829052d4353a5b18f362cd03d20
\