Round digit (MQL4)

 
Hi there, 

Would like to ask is there any way to round 0.001 to 0.01? 

Eg: 0.013 to 0.02. 

Thanks in advance. 
 
double Roundup(double number) 
{  
   number = MathCeil(number * MathPow(10, 2));  
   return (number * MathPow(10, -2)); 
}  
you are welcome;)
原因: