Re: 👨‍💻 Has the MQL encrypting algorithm been cracked?

23
at least one good thing that comes from decompiling is that you can see if there are some shady stuff in the EA

for example in one of them, there is a section that sets params according to the pair used
example:

Code: Select all

if (Symbol() == "EURUSD")
{
   param1 = 1;
   param2 = 234;
   param3 = 1.4;
}
if (Symbol() == "GBPUSD")
{
   param1 = 5;
   param2 = 14;
   param3 = 1.2;
}
etc
so it's a form of curve fitting that isn't reliable

Jeff
Scalping the Century TimeFrame since 1999


Re: 👨‍💻 Has the MQL encrypting algorithm been cracked?

28
Renko77 wrote: Thu Feb 20, 2025 7:49 pm Why i said ex4/5 files less secure without dll or any other method,,,,,
Here i just share my experience, few years back i transferred ex4 files to multiple users with simple lock(date expiry ) and very next morning one person send me screenshot with code, he cracked.
I think what you mean is EX5 files are more secure than EX4 in terms of decompiling / cracking, right? I do agree!