引差:ref(c,1)-low,LINETHICK0;
引跌幅:if((ref(c,1)-low)/ref(c,1)*100>0,(ref(c,1)-low)/ref(c,1)*100,0),LINETHICK0;
三日均跌:ma(引跌幅,3),colorwhite;
今最高:high,LINETHICK0,colorFF;
今最低:LOW,LINETHICK0,colorgreen;
STICKLINE(引跌幅<=2,0,引跌幅,5,0),COLORcyan;
STICKLINE(引跌幅>2 and 引跌幅<=3,0,引跌幅,5,0),COLORyellow;
STICKLINE(引跌幅>3 and 引跌幅<=4,0,引跌幅,5,0),COLORMAGENTA;
STICKLINE(引跌幅>4 ,0,引跌幅,5,0),COLORgreen;
2,COLORcyan,LINEDOT;
3,COLORcyan;
4,COLORcyan,LINEDOT; |