统计一天里面的次数吗
1.价格创新高并且MACD没有创新高的次数,
macd:=stkndi('','macd.macd1',0,datatype);
count(h=hhv(h,0) and macd<>hhv(macd,0),0);
2.价格创新高的次数
count(h=hhv(h,0),0);
1.价格创新高并且MACD没有创新高的次数,
macd:=stkndi('','macd.macd1',0,datatype);
count(h=hhv(h,0) and macd<>hhv(macd,0),0);
2.价格创新高的次数
count(h=hhv(h,0),0);
再发一遍