Thank you for message. Fixed, wait for updates.

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
To Development team of MQL5 ,
It seems that the Watch window is showing wrong values of variables that I am passing as arguments to a function.
For example:
void OnStart()
{
double q = 0.5;
double p = 1.2;
Dummy(q, p);
}
void Dummy(double qty, double price)
{
Print(qty);
Print(price); //<= breakpoint here
}
Even though in the Experts window the variables qtd and price are printed corretly, the Watch window is showing a wrong value to price; in this case, 7.748383280539996e-62.
Could you please, check it out?
Thanks.