{江恩日线} 总股本:=FINANCE2(35) ; 流通股:=FINANCE2(37); 每股收益:=FINANCE2(3); 市盈率:=DYNAINFO(39); 每股公积金:=FINANCE2(7); {江恩分线} 工作16:eMA(CLOSE,16),color074af0,linethick2; 辅助8:eMA(CLOSE,8); ①55:eMA(CLOSE,55); ②103:eMA(CLOSE,103); ③453:eMA(CLOSE,453),linethick2; DIFF:=( EMA(CLOSE,7) - EMA(CLOSE,19)); DEA:=EMA(DIFF,9); MACD:=0.90*(DIFF-DEA); tj:=(diff>=dea); tj1:=(diff>=0); stickline(tj,h,l,0,0),COLORyellow; stickline(tj,o,c,8,0),COLORyellow; stickline(tj1 and tj,h,l,0,0),colorred; stickline(tj1 and tj,o,c,8,0),colorred; stickline(diff<dea,h,l,0,1),colorffcc00; stickline(diff<dea,o,c,8,1),colorffcc00; Var1:=(CLOSE*2+HIGH+LOW)/4; SK:= EMA(Var1,13)-EMA(Var1,73); SD:= EMA(SK,2); drawtext((cross(sk,sd) and sk<-0.04 and (c-ref(c,1))/ref(c,1)>=0.03) or (cross(sk,sd) and sk<=-0.14 ) or (cross(sk,sd) and sk<=0.05 and (v/ma(v,5)>2 or c/ref(c,1)>0.035)) ,l*0.99,'短线'),colorgreen; stickline((cross(sk,sd) and sk<-0.04 and (c-ref(c,1))/ref(c,1)>=0.03) or (cross(sk,sd) and sk<=-0.14 ) or (cross(sk,sd) and sk<=0.05 and (v/ma(v,5)>2 or c/ref(c,1)>0.035)),h,l,0.5,0),colorred; stickline((cross(sk,sd) and sk<-0.04 and (c-ref(c,1))/ref(c,1)>=0.03) or (cross(sk,sd) and sk<=-0.14 ) or (cross(sk,sd) and sk<=0.05 and (v/ma(v,5)>2 or c/ref(c,1)>0.035)),o,c,10,1),linethick3,colorred; |