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!
I have experienced strange problem in 64bit version of MT5 when the function is imported from the external library.
I have created a sample function in C:
double __stdcall test_double(double d)
{
return (d*1.22);
}
and declared it in MQL:
double test_double(double d);
When invoked in MQL like that:
Print ("test_double:"+test_double(100));
I got:
2010.10.11 18:12:42 double_bug (EURUSD,H1) test_double:-1.#IND
The very same code works like a charm when recompiled for an run under 32 bit MT5 platform.
It's very strange as double and float data types are standard across all platforms and do not depend on the architecture.
Later I redefined the routine to:
double __stdcall test_double(double d)
{
return (1.22);
}
And got the very same result.
Looks like a terminal bug.