1mathboy1:
About syntax :Does anyone know what this error means? I'm trying to set lotsize to be at fixed leverage, so I put
double Lots;
...
its rounded to 2 decimals. but I get an error saying ""no ivalue present"
Lots=NormalizeDouble(leverage*AccountBalance()/100000, 2);
1mathboy1:
double Lots=NormalizeDouble(((leverage*AccountBalance()/100000),2),2);
its rounded to 2 decimals. but I get an error saying ""no ivalue present"
double Lots=NormalizeDouble(((leverage*AccountBalance()/100000),2),2);
its rounded to 2 decimals. but I get an error saying ""no ivalue present"
double Lots=NormalizeDouble( ( (leverage*AccountBalance()/100000) ,2) ,2 ); Assignment = FunctionCall( <========== first argument ============> ,<2nd>); ( ( aDoubleValue ) ,2) ( aDoubleValue ,2)What is the meaning of "(aDouble,2)" as the first parameter?

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
Does anyone know what this error means? I'm trying to set lotsize to be at fixed leverage, so I put
double Lots;
Lots=NormalizeDouble(((leverage*AccountBalance()/100000),2),2);
its rounded to 2 decimals. but I get an error saying ""no ivalue present"