How to get the value in digits

 

Hi,

I'm fairly new in MQL is there a way to get the exact value of the Digit variable let's say for EU 1.3050, is there a way to get 3050 or can I do it by splicing the variable?

Thanks in advance!

 
double value    = 1.3050,
       reminder = (value - MathFloor(value))/Point;
 
@gooly thanks will give that a try :)
Reason: