CC:=close;
OO:=open;
HH:=high;
LL:=low;
//绘制阳线
STICKLINE(CC>=OO,CC,HH,0,0,COLORRED);
STICKLINE(CC>=OO,CC,OO,8,1,COLORRED);
STICKLINE(CC>=OO,OO,LL,0,0,COLORRED);
//绘制阴线
STICKLINE(CC<OO,CC,HH,0,0,COLORCYAN);
STICKLINE(CC<OO,CC,OO,8,0,COLORCYAN);
STICKLINE(CC<OO,CC,LL,0,0,COLORCYAN);
你研究下STICKLINE的画法吧