历史量比:vol/MA(VOL,5);
换手:(VOL*100/CAPITAL),STICK;
二日换手:SUM(换手,2);
三日换手:SUM(换手,3);
五日换手:SUM(换手,5);
十日换手:SUM(换手,10);
{- }
STICKLINE(换手<=1,0,VOL,2,0),COLORWHITE;
STICKLINE(换手>1 AND 换手<=3 ,0,VOL,2,0),COLOR00FF00;
STICKLINE(换手>3 AND 换手<=5 ,0,VOL,2,0),COLORF0F000;
STICKLINE(换手>5 AND 换手<=8 ,0,VOL,2,0),COLOR8788F6;
STICKLINE(换手>8 AND 换手<=10 ,0,VOL,2,0),COLORYELLOW;
STICKLINE(换手>10 AND 换手<=15 ,0,VOL,2,0),COLORFF00FF;
STICKLINE(换手>15 ,0,VOL,2,0),COLORRED;