如何获取指定天数的涨停次数?
由cnkavin创建,最终由small_q 被浏览 63 用户
需要在特征里表述,之前5日涨停次数我是这么写的:
ztnum=where(price_limit_status_0==3,1,0)+where(price_limit_status_1==3,1,0)+where(price_limit_status_2==3,1,0)+where(price_limit_status_3==3,1,0)+where(price_limit_status_4==3,1,0)
对于周期较长的,这种写法就不太合适了。