mql5 < ILLEGAL OPERATION code example
Example: mql5 < ILLEGAL OPERATION
struct Random{
int a;
int b;
}
int c;
if ( c > Random){ //Gives error '> illegal operation'
do something;
}
//should be c> Random.a;
//Don't worry you're not stupid I made the same mistake!