• Welcome back! Thank you for being a part of this Traders Community. Let's discuss and share :)
    Selamat datang kembali! Trimakasih telah menjadi bagian dari Komunitas Trader ini. Mari berdiskusi dan berbagi :)

Question Tell me Password authentication function

haroharo

New Member
Credits
0
Suddenly I'm sorry.

I developed EA, but I am in trouble because I do not know how to protect it. Could you tell me if it is okay?

· Account number description.

· A description that works by entering the password that only the creator (who refers to me) can know to the EA parameter setting.
 
input int SerialNum = 1234567;

void OnInit(){
int SN =0;
SN = GetSerialNumber();
if ( SN == SerialNum){
//ok
}
}

int GetSerialNumber(){
int acc = AccountNumber();
int secretFormula = 889;
//you can use matrix to generate secret formula.
return (acc * secretFormula);

}


Sent from SoeHoe.ID mobile apps
 
Ikut menyimak sementara meski juga belum paham karena otak tidak mudah menerima pelajaran yang rumit bagaimana cara membuat ea
manual lebih sederhana soalnya
 
Back
Top