ma1:=ema(c,30);ma2:=ema(c,900);stickline((ma1>ma2),ma1,ma2,0,0),color1000ff;stickline((ma1<ma2),ma1,ma2,0,0),color00ff00;gj:c,colorwhite;jj:sum(c*v,fromopen)/sum(v,fromopen),coloryellow,linethick1.5;均量:=ma(v,5);量连增:=均量>ref(均量,1) and ref(均量,1)>ref(均量,2);价连涨:=c>=ref(c,1) and ref(c,1)>ref(c,2);价量线上:=c>jj and v>均量;倍量:=v>=ref(v,1)*2 ;价新高:=c>=hhv(c,fromopen);量新高:=v>=hhv(v,fromopen);限幅:=c/dyna**(3)<=1.02;起爆:=filter(量连增 and 价连涨 and 价量线上 and 倍量 and 价新高 and 量新高 and 限幅,20);drawtext(起爆,c,起爆),color00ffff;drawicon(起爆,c,1);stickline(起爆,c,jj,1,0),color1000ff;vv:=barssince(起爆);起爆价:=ref(c,vv);起爆时间:=ref(time/10000,vv);收益:=(dyna**(7)-起爆价)/起爆价*100;drawicon(vv>=2,起爆价,13);drawtext_fix(1,0,1,0,起爆时间:),color00ffff;drawnumber_fix(1,0.06,1,0,const(起爆时间)),color00ffff;drawtext_fix(1,0.12,1,0,起爆价:),color00ffff;drawnumber_fix(1,0.17,1,0,const(起爆价)),color00ffff;drawtext_fix(1,0.24,1,0,收益:),color00ffff;drawnumber_fix(1,0.28.06,1,0,const(收益)),color00ffff; 20210311