variable:flag=0;
DIFF : EMA(CLOSE,12) - EMA(CLOSE,26);
DEA : EMA(DIFF,9);
MACD1 : 2*(DIFF-DEA), COLORSTICK;
con1:=macd1>0 and ref(macd1,1)<0;
con2:=macd1<0 and ref(macd1,1)>0;
x1:=sum(macd1,BARSLAST(con1)+1);
x2:=sum(macd1,BARSLAST(con2)+1);
if macd1>0 then flag:=x1;
if macd1<0 then flag:=x2;
x:flag;//MACD一段连续红绿柱子的数字之和
VARIABLE:n:=0,g:=0;
DIFF:EMA(CLOSE,12) - EMA(CLOSE,26);
DEA:EMA(DIFF,9),COLORYELLOW;
MACD1:2*(DIFF-DEA),colorstick;
if macd1>0 then n:=n+macd1;
if macd1<0 THEN g:=g+macd1;
if macd1<0 then n:=0;
if macd1>0 then g:=0;
nn:n,LINETHICK0;//连续红柱子之和
gg:g,LINETHICK0;//连续绿柱子之和