a:=cross(macd.dif,macd.dea);a and macd.dif>=macd.dea+0.01 and range(macd.dif,-0.3,0.3) 周dif:="macd.dif#week"(12,26,9);周dea:="macd.dea#week"(12,26,9);周dea>0 and cross(周dif,周dea); 20210311
公式如下:jc:if(sum(if(macd>0 and cross(macd.dif,macd.dea),1,0),0)-hhv(if(if(cross(macd.dea,0),1,0),sum(if(macd>0 and cross(macd.dif,macd.dea),1,0),0),0),0)=2 and sum(if(macd>0 and cross(macd.dif,...
1、50天之内,macd黄白线在-1和1之间来回波动,可以定义为黄白线长期在0轴附近运行。 2、dif与dea两条线贴近运行。因为即使黄白线在-1和1之间运行,两条线分差太大,所呈现出来的,也不是贴近0轴。macd黄白线即将上穿0轴;dif:=ema(close,12)-ema(close,26);dea:=ema(dif,9);dif<0 and dea<0 and di...