如何编写选股条件:股票连续涨停次数位居当天排名的第一、第二和第三位。谢谢!
指标不麻烦,计算连续涨停的次数。
//指标运行在日线上
VARIABLE:mark:=0;
dayc:CALLSTOCK('',vtCLOSE,6,0);
lastdayc:CALLSTOCK('',vtCLOSE,6,-1);
zt:((dayc-lastdayc)/lastdayc)>=0.99;//涨停判断
if zt then mark:=mark+1;
if not(zt) then mark:=0;
连续周期数:mark;
但是做排序筛选这一步 就只能用股票池做了:
股票池里设置上面指标里的“连续周期数”来做排序就行了。
此主题相关图片如下:temp.png
是的。暂且没有其他办法可以处理这个需求的。
[此贴子已经被作者于2021/1/15 13:13:11编辑过]