发现自编公式所显示的红色阳K线里面有黑影,请问怎么消除?
提供以下画法,供楼主参考
c1:= close;
o1:= open;
h1:= high;
l1:= low;
kred:STICKLINE( c1>o1,c1 ,o1, 10,1 ,colorred);//空心实体
kred1:STICKLINE( c1>o1,h1 ,max(c1,o1), 0,1 ,colorred);//上引线
kred2:STICKLINE( c1>o1,min(c1,o1) ,l1, 0,1 ,colorred);//下引线
kgreen:STICKLINE( c1<o1,c1 ,o1, 10,1 ),colorgreen;//实心实体
kgreen1:STICKLINE( c1<o1,h1 ,max(c1,o1), 0,1 ,colorgreen);
kgreen2:STICKLINE( c1<o1,min(c1,o1) ,l1, 0,1 ,colorgreen);