I have coded this to display length of each bar as I move cursor onto the bar.
I don't want to see the values plot on the chart but would like to see the value on the data window.
How do I hide the graph/plot to save space and at the same time display the value on data window?
Thank You
Steven
function main() {
setStudyTitle("Bar Length");
setCursorLabelName("BL");
return(high(0)-low(0));
}
I don't want to see the values plot on the chart but would like to see the value on the data window.
How do I hide the graph/plot to save space and at the same time display the value on data window?
Thank You
Steven
function main() {
setStudyTitle("Bar Length");
setCursorLabelName("BL");
return(high(0)-low(0));
}
Comment