Quote:
|
Originally Posted by shwetha
hi guys
whats the code to have a password protection to EA
and is it possible to have our EA working in interbank fx server
any help reg this is appreciated
bye
shwetha
|
Hi shwetha,
very easy friend!
PHP Code:
extern string password = "000000";
....
int start()
{
if (password != 123456) //change the 123456 to the password you will give to the user!
{
Alert ("Wrong password! Do you want to cheat my system which I spent my life developing!");
return (0);
....
}
Then compile the EA and ENJOY
