
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
void median(string symbol, double& medianU, double& medianL)
{
if (symbol == "EURUSD")
{
medianU = 0.45;
medianL = 0.46;
}
else
{
medianU= 0.57;
medianL = 0.58;
}
}
The only reason I can think of is that thee is a bug when passing ref types across libraries.
Can someone from Metaquote verify if this is true?