what is different between digit and point ?

 

can someone explain whats the different ?

for example:

eurusd current price is bid : 1.3253 ask 1.3257

how can i get the last change number ? that 0.0003.

 

double lastnumber=Bid-MathFloor(Bid/(Point*10))*Point*10;

 

The difference between Digits and Point:


Take the example where the EURUSD price is 1.3253 and the USDJPY price is 95.24


In that case for EURUSD:

Digits = 4

Point = 0.0001


And for USDJPY:

Digits = 2

Point = 0.01

Reason: