Is there a way to make a chart not do anything by default(draw bars, calculations, etc.)?

 
Hello,

I want to have a chart with an indicator that will only display information that I give. So, for efficiency purposes I would like to know if there is a way to "kill" that chart and only respond to my functions. That way, it won't have to calculate anything nor draw anything except when I want. I've searched in the chart properties but couldn't find any option. Can it be done?

Thank you
Documentation on MQL5: Constants, Enumerations and Structures / Indicator Constants / Drawing Styles
Documentation on MQL5: Constants, Enumerations and Structures / Indicator Constants / Drawing Styles
  • www.mql5.com
When creating a custom indicator , you can specify one of 18 types of graphical plotting (as displayed in the main chart window or a chart...
 
ChartSetInteger(0,CHART_SHOW,false);
 
Alain Verleyen #:
My bad, looked at all CHART_SHOW_properties except the one I needed. Thank you and sorry.