|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?注册
x
STICKLINE(c>0 and ma(vol,55)>0,0,100,6,0),Color000000;
买线:EMA(C,3),COLORRED;
卖线:EMA(SLOPE(C,21)*20+C,55),color00ff00,linethick2;
线:EMA(SLOPE(C,34)*20+C,89),COLORyellow,linethick2; STICKLINE(买线<卖线,买线,卖线,0.01,1),colorGREEN; STICKLINE(买线>卖线,买线,卖线,0.01,1),COLORRED,; STICKLINE((卖线-线)>=0,(卖线-(卖线-线)*0.05),(卖线-(卖线-线)*0.15),5,0),COLOR00ffff; STICKLINE((卖线-线)>=0,(卖线-(卖线-线)*0.2),(卖线-(卖线-线)*0.35),5,0),COLOR00ccff; STICKLINE((卖线-线)>=0,(卖线-(卖线-线)*0.4),(卖线-(卖线-线)*0.55),5,0),COLOR0099ff; STICKLINE((卖线-线)>=0,(卖线-(卖线-线)*0.6),(卖线-(卖线-线)*0.75),5,0),COLOR0066ff; STICKLINE((卖线-线)>=0,(卖线-(卖线-线)*0.8),(卖线-(卖线-线)*0.95),5,0),COLOR0000cc; STICKLINE((卖线-线)<0,(线+(卖线-线)*0.05),(线+(卖线-线)*0.15),5,0),COLOR006600; STICKLINE((卖线-线)<0,(线+(卖线-线)*0.2),(线+(卖线-线)*0.35),5,0),COLOR009900; STICKLINE((卖线-线)<0,(线+(卖线-线)*0.4),(线+(卖线-线)*0.55),5,0),COLOR00cc00; STICKLINE((卖线-线)<0,(线+(卖线-线)*0.6),(线+(卖线-线)*0.75),5,0),COLOR00ff00; STICKLINE((卖线-线)<0,(线+(卖线-线)*0.8),(线+(卖线-线)*0.95),5,0),COLOR66ff00;
STICKLINE(CROSS(ma(卖线,1),ma(线,1)),ma(线,1),ma(线,1)+0.8,10,0),colorwhite;
DRAWTEXT(CROSS(卖线,线),线+1.2,'骑★龙'),COLORyellow; |
|