Hi,
I have a study which shows both a histogram and a line joining the ends of the histogram. I do this by returning the value as a pair of values in an array:
return new Array(varRet,varRet);
And in the setup code it defines:
setPlotType(PLOTTYPE_HISTOGRAM,0);
setPlotType(PLOTTYPE_LINE,1);
So i get what I want. However, on the Cursor window both these values are displayed and I only want one of them displayed.
Any ideas?
I have a study which shows both a histogram and a line joining the ends of the histogram. I do this by returning the value as a pair of values in an array:
return new Array(varRet,varRet);
And in the setup code it defines:
setPlotType(PLOTTYPE_HISTOGRAM,0);
setPlotType(PLOTTYPE_LINE,1);
So i get what I want. However, on the Cursor window both these values are displayed and I only want one of them displayed.
Any ideas?
Comment