How to authenticate an EA access by the account/email of the trader?

 

Hello guys,

Someone knows a way to authenticate an user access to use an EA through a simple file (TXT or CSV) in a web folder without DLL or mysql?

I was using this simple code:

extern string name = "August";
extern string email = "august@email.com";
extern string acc_n = "123456";

...

int start() { 

if (  AccountNumber()!=123456)
   {
    Alert("WRONG ACCOUNT!");
   return;
   }


Regards,