Is there a way to programmatically hide the indicator name and current buffer values of an indicator?
Some sort of ChartSetInteger() or IndicatorSetInteger() value?
I'm not even sure what this line is called. (See attached image).
This information isn't necessarily problematic—it's just clutter on the screen.
PlotIndexSetInteger(i,PLOT_SHOW_DATA,false); //--- repeat for each plot IndicatorSetString(INDICATOR_SHORTNAME," ");
Of course the drawback is your indicator shortname isn't very useful and the plot data are not displayed in Data Window either.
In case you need them, there is a relatively easy workaround, you are certainly able to find it ;-)
Of course the drawback is your indicator shortname isn't very useful and the plot data are not displayed in Data Window either.
In case you need them, there is a relatively easy workaround, you are certainly able to find it ;-)
Exactly what I wanted!
Thanks!
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Is there a way to programmatically hide the indicator name and current buffer values of an indicator?
Some sort of ChartSetInteger() or IndicatorSetInteger() value?
I'm not even sure what this line is called. (See attached image).
This information isn't necessarily problematic—it's just clutter on the screen.