「翔博精选指标」换手率多彩,不同颜色代表意思不同(通达信公式
2022-04-08原创 编 辑:翔博软件
	{换手率多彩}
	换手:VOL/CAPITAL*100,NODRAW;
	低换手小于2:换手<2,COLORFFFF00,NODRAW;
	温和换手2到5:换手>2 AND 换手<5,COLORMAGENTA,NODRAW;
	热换手5到11:换手>5 AND 换手<11,COLORYELLOW,NODRAW;
	烫手换手11到17:换手>11 AND 换手<17,COLORRED,NODRAW;
	高潮换手大于17:换手>17,COLORGREEN,NODRAW;
	五日均换手:MA(换手,5);
	十日均换手:MA(换手,10);
	STICKLINE(换手<2,0,换手,2.3,0),COLORFF4400;
	STICKLINE(换手<2,0,换手,1.8,0),COLORFF6600;
	STICKLINE(换手<2,0,换手,1.3,0),COLORFF9900;
	STICKLINE(换手<2,0,换手,0.6,0),COLORFFCC00;
	STICKLINE(换手<2,0,换手,0.3,0),COLORGREEN;
	STICKLINE(换手>2 AND 换手<5,0,换手,2.3,0)COLORFF0033;
	STICKLINE(换手>2 AND 换手<5,0,换手,1.8,0)COLORFF0066;
	STICKLINE(换手>2 AND 换手<5,0,换手,1.2,0)COLORFF0099;
	STICKLINE(换手>2 AND 换手<5,0,换手,0.6,0)COLORFF00CC;
	STICKLINE(换手>2 AND 换手<5,0,换手,0.3,0)COLORFF00FF;
	STICKLINE(换手>5 AND 换手<11,0,换手,2.3,0)COLOR0035FF;
	STICKLINE(换手>5 AND 换手<11,0,换手,1.8,0)COLOR0064FF;
	STICKLINE(换手>5 AND 换手<11,0,换手,1.3,0)COLOR0093FF;
	STICKLINE(换手>5 AND 换手<11,0,换手,0.8,0)COLOR00C2FF;
	STICKLINE(换手>5 AND 换手<11,0,换手,0.3,0)COLOR00FFFF;
	STICKLINE(换手>11 AND 换手<17,0,换手,2.3,0),COLOR000055;
	STICKLINE(换手>11 AND 换手<17,0,换手,2,0),COLOR000077;
	STICKLINE(换手>11 AND 换手<17,0,换手,1.8,0),COLOR000099;
	STICKLINE(换手>11 AND 换手<17,0,换手,1.5,0),COLOR0000BB;
	STICKLINE(换手>11 AND 换手<17,0,换手,0.9,0),COLOR0000DD;
	STICKLINE(换手>11 AND 换手<17,0,换手,0.3,0),COLOR0000FF;
	STICKLINE(换手>17,0,换手,2.3,0),COLOR006000;
	STICKLINE(换手>17,0,换手,2.1,0),COLOR007500;
	STICKLINE(换手>17,0,换手,1.8,0),COLOR009100;
	STICKLINE(换手>17,0,换手,1.3,0),COLOR00A600;
	STICKLINE(换手>17,0,换手,0.8,0),COLOR00BB00;
	STICKLINE(换手>17,0,换手,0.3,0),COLOR00CC00;
DRAWICON(换手>25,换手,15);
	