keeping custom indicator from spamming experts tab

 

hello world,


is there a way to tell a custom indicator not to report "initialized"/"deinitialized" every time I change timeframe on a chart?


thank you in advance even if there isn't :)

 

Drave wrote >>

is there a way to tell a custom indicator not to report "initialized"/"deinitialized" every time I change timeframe on a chart?

No. You can have the EA/Indicator write to a custom log file (via File functions); that will give u full control over what gets printed (this file can later be 'tailed' with something like BareTail).

 
comment out the Print() statements in init/deinit
 
WHRoeder:
comment out the Print() statements in init/deinit
"initialized"/"deinitialized" is not the output of any Print() statement... It's the Terminal's output and u have no control over it.
Reason: