Hi,
I want certain data to appear in the cursor window (the window that is found in the chart, that usually reports high, low, close, open, and changes as you move the bar. That's called a cursor window right?)
but I don't to actually plot the data. How do I do that?
Right now I have this in my premain()
setCursorLabelName("option1:", 0);
setCursorLabelName("option2:", 1);
and I am returning variables vPH0 and vPH1
return new Array(vPH0, vPH1)
I want certain data to appear in the cursor window (the window that is found in the chart, that usually reports high, low, close, open, and changes as you move the bar. That's called a cursor window right?)
but I don't to actually plot the data. How do I do that?
Right now I have this in my premain()
setCursorLabelName("option1:", 0);
setCursorLabelName("option2:", 1);
and I am returning variables vPH0 and vPH1
return new Array(vPH0, vPH1)
Comment