
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Hi, is it possible to redeclare mt4 function?
Example:
bool Print(int a, int b)
{
if(a>b) {
return true;
}
else {
return false;
}
From now function Print will compare two integers.
Any similar or different way to override MT4 function?