typ:=(high+low+close)/3;cci:=(typ-ma(typ,14))/(0.015***edev(typ,14));cci修正1:=ema(ema(ema(cci,2),2),2);cci修正2:=ema(ema(ema(cci,3),2),2);x:=(cross(cci修正1,cci修正2)or(cci修正1>=cci修正2)) and cci修正1>=-101 and cci修正1>=ref(cci修正1,1) and ref(cci修正1,1);rsv:=(close-llv(low,... 20210311
var3aa:=if((close>ref(close,1)),88,0);var4aa:=if(((close)/(ref(close,1))>1.05) and ((high)/(close)<1.01) and (var3aa>0),91,0);预警:filter((var4aa>90),45) or filter((var4aa>90),35);
var1:=(close*2+high+low)/4;sk:=ema(var1,13)-ema(var1,21);sd:=ema(sk,2);多方能量:=2*(sk-sd)*3.8;空方能量:=(-2)*(sk-sd)*3.8;强弱分界:=0;cross(多方能量,空方能量) and (sk>sd and cross(sk,sd));{已测试,复制可直接引用,如果回答满意,请记得给采纳}
参数 n 2 100 11 m 2 100 6cv:=close;bbiboll:=(ma(cv,3)+ma(cv,6)+ma(cv,12)+ma(cv,24))/4;upr:=bbiboll+m*std(bbiboll,n);dwn:=bbiboll-m*std(bbiboll,n);xg:c<dwn;
{分时突破} ta:=barslast(time=100000);tc:=ref(hhv(c,0),ta+1);tv:=ref(hhv(v,0),ta+1);zf:=tc/dyna**(3);xg1:=cross(c,tc)and v>tv and zf,colorwhite;ta1:=barslast(time=110000);cc1:=ref(hhv(c,0),ta1+1);vv1:=r...