"no Ivalue present" error

 

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" 

 
1mathboy1:

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" 

About syntax :
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    );
  Assignment = FunctionCall( <========== first argument ============> ,<2nd>);
                             ( (        aDoubleValue            ) ,2)
                             (          aDoubleValue              ,2)
What is the meaning of "(aDouble,2)" as the first parameter?
Reason: