大智慧黄金阶梯+操盘线+撑压划线主图指标公式

N:=5;

{HJJT黄金阶梯}

高1:=REF(HHV(H,120),3);

低1:=REF(LLV(L,120),3);

H01:=高1-(高1-低1)*0.191;

H02:=高1-(高1-低1)*0.382;

H3:=高1-(高1-低1)*0.5;

H4:=高1-(高1-低1)*0.618;

H5:=高1-(高1-低1)*0.809;

突破:=REF(EMA(C,14),1);

A1X:=(EMA(C,10)-突破)/突破*100;

基准:=IF(A1X>=0,REF(EMA(C,10),BArslAst(crOSS(A1X,0))+1),REF(EMA(C,10),BARSLAST(CROSS(0,A1X))+1));

stickline(A1X>=0,突破,突破,10,0),coloryellow;

stickline(A1X<0,突破,ref(突破,1),0,-1000);

STICKLINE(A1X>=0,基准,突破,10,0),COLOR000099;

STICKLINE(A1X<0,基准,突破,10,0),COLOR00CC66;

{CPX}

bu:=cross(high,SAR(3,1,20));

sel:=cross(SAR(3,1,20),low);

var1:=last(high<SAR(3,1,20));

var2:=last(low>sar(3,1,20));

drawflagtext(bu,high,'买入');

drawflagtext(sel,low,'卖出');

drawtext(bu,LOW,'B'),valign0,align1,coloryellow,linethick2;

drawtext(sel,HIGH,'S'),valign2,align1,colorgreen,linethick2;

STICKLINE(low>SAR(3,1,20) and isdown,high,open,0.5,1),colorred;

STICKLINE(low>SAR(3,1,20) and isdown,close,open,7.5,1),colorred;

STICKLINE(low>SAR(3,1,20) and isdown,close,low,0.5,1),colorred;

STICKLINE(high<SAR(3,1,20) and isup,high,close,0.5,1),colorcyan;

STICKLINE(high<SAR(3,1,20) and isup,close,open,7.5,1),colorcyan;

STICKLINE(high<SAR(3,1,20) and isup,open,low,0.5,1),colorcyan;

drawflagtext(high<SAR(3,1,20) and high>=ref(high,1),high,'明日突破'+forcast(sar(3,1,20),max(var1,2))+'建议关注');

drawflagtext(high<SAR(3,1,20) and high<ref(high,1),high,'持币观望');

drawflagtext(low>SAR(3,1,20) and low<=ref(low,1),low,'明日跌破'+forcast(sar(3,1,20),max(var2,2))+'注意止盈');

drawflagtext(low>SAR(3,1,20) and low>ref(low,1),low,'继续持股');

{CYHX}

{input: N(5,1,100);}

A1:=ref(h,N)=hhv(h,2*N+1);

B1:=filter(A1,N);

C1:=backset(B1,N+1);

D1:=filter(C1,n);{高点}

A2:=ref(l,N)=llv(l,2*N+1);

B2:=filter(A2,N);

C2:=backset(B2,N+1);

D2:=filter(C2,N);{低点}

E1:=(ref(llv(l,2*N),1)+ref(hhv(h,2*N),1))/2; E2:=(h+l)/2;{高低点出现在同一k线上时可作取舍}

{www.zhibiaow.com 指标网_大智慧股票指标公式}

H1:=(D1 AND not(D2 AND E1>=E2)) OR barstatus=2 OR barscount(c)=1;

L1:=(D2 AND not(D1 AND E1<E2)); H2:=D1 AND not(D2 AND E1>=E2);

X1:=ref(barslast(H1),1)+1; F1:=backset(H1 AND count(L1,X1)>0,llvbars

(if(L1,l,10000),X1));

G1:=F1>ref(F1,1); I1:=backset(G1,2); LD:=I1>ref(I1,1);{过滤后低点}

L2:=LD OR barstatus=2 OR barscount(c)=1;

X2:=ref(barslast(L2),1)+1; F2:=backset(L2 AND count(H2,X2)>0,hhvbars

(if(H2,h,0),X2));

G2:=F2>ref(F2,1); I2:=backset(G2,2); HD:=I2>ref(I2,1);{过滤后高点}

R1:=backset(barstatus=2,barslast(HD)+1);

S1:=R1>ref(R1,1); {前一高}

T1:=backset(barstatus=2,barslast(LD)+1);

U1:=T1>ref(T1,1); {前一低}

R2:=backset(S1,ref(barslast(HD),1)+2);

S2:=R2>ref(R2,1); {前二高}

T2:=backset(U1,ref(barslast(LD),1)+2);

U2:=T2>ref(T2,1); {前二低}

短期压力:drawline(S2,h,S1,h,1),Colorred;

短期支撑:drawline(U2,l,U1,l,1),Colorgreen;