EA, How to Make Authorization!!!

 
I would like to create my own EA! I would like to make the feature, that only desirable people can use. For instance, some email addresses are stored in MySQL database. A trader execute the EA, it asks for a email address and a password, then if he entered the wrong email, password, or the email address, he will be allowed to use this EA. The journal of MetaTrader has to say like wrong data entered or something of this sort. Is it possible? Your suggestions?
 
MQL code is not secure. Keep your robot to yourself.
 

Even better, put all the secured code (code you want to maintain as private) in a properly encoded dll and then make calls to it through the MQL. Create the authentication in that dll and let it process behind the scenes. The only problem is getting the logging back into mql from the dll.

 
Hi Allex,
yes this is possible, but involves a lot of coding. You can code the most important functions of the EA in C++ (dll) along with a authentication check. The dll should talk back to the authentication server, to keep you in controle of the EA.

hth Russell
Reason: