double remainder = MathMod(value, value2);
treviso:
Hello,
I need some help with this code I wrote using the MathMod function:
double remainder;
double value = Bid;
double value2 = 0.0025;
remainder = double MathMod(value, value2); <-------- should be: remainder = MathMod(value, value2);
When I complie my EA I get this error message:
'MathMod' - variable expected
Thanks to all who can help out !!!
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
Hello,
I need some help with this code I wrote using the MathMod function:
double remainder;
double value = Bid;
double value2 = 0.0025;
remainder = double MathMod(value, value2);
When I complie my EA I get this error message:
'MathMod' - variable expected
Thanks to all who can help out !!!