I am trying to plot DOT for the close of the bar but for some reason I get +
where is the mistake please
function preMain() {
setPriceStudy(true);
setStudyTitle("DOT Close");
setColorPriceBars(true);
setDefaultPriceBarColor(Color.black);
setPlotType(PLOTTYPE_DOT, 0);
setDefaultBarThickness(3, 0);
}
function main() {
var vClose = close(0);
//setBarFgColor(Color.Black,0);
return vClose;
}
where is the mistake please
function preMain() {
setPriceStudy(true);
setStudyTitle("DOT Close");
setColorPriceBars(true);
setDefaultPriceBarColor(Color.black);
setPlotType(PLOTTYPE_DOT, 0);
setDefaultBarThickness(3, 0);
}
function main() {
var vClose = close(0);
//setBarFgColor(Color.Black,0);
return vClose;
}
Comment