Is there a way to leave the candle wicks black when using a MA PriceBars formula? I'd like only the body of the candle painted.
Brian
Brian
if(vValue >= vClose) {
setPriceBarColor(Color.red,Color.black);
} else if(vValue < vClose) {
setPriceBarColor(Color.lime,Color.black);
}
if(vValue >= vClose) {
setPriceBarColor(Color.red,Color.black,true);
} else if(vValue < vClose) {
setPriceBarColor(Color.lime,Color.black,true);
}
Comment