Any way to LOCK an Indicator or Template?

 

Is there anyway to lock an indicator so there are no variable to view or change basically and just use the binary so no source to view?

or have a template that loads locked indicators..you couldn't change the settings of the indicators or view the settings but you could add indicators to the screen.

Just wondering

 
SPACECHIMP:
Is there anyway to lock an indicator so there are no variable to view or change basically and just use the binary so no source to view?

or have a template that loads locked indicators..you couldn't change the settings of the indicators or view the settings but you could add indicators to the screen.

Just wondering

Salam SPACECHIMP,

To lock an indicator (make all the settings unchangeable) You have to remove all the external varabiles (extern) to make them local variables and then compile the indicator (or the EA) and give only the .ex4 file (binary file).

Ex:

extern int CCIPeriod=14;

convert it to:

int CCIPeriod=14;

 

that's kinda what i figured..

THANKS