JPY price won't normalise?

 

Hey everyone,

I have a strange problem. An EA I coded tests fine on everything but CHF and JPY pairs where sometimes erratic prices form and won't normalise.

For instance, the ask price from yesterday for NZDJPY at 22:00:03.357 is 77.11499999999999. I then normalise that as part of the process with normalisedouble to 3 digits, and the result is... 77.11499999999999.

The same thing happened on USDCHF and some others, all JPY or CHF pairs though.

Pulling an odd ask figure is fine, but why won't the normalise function work on it to get it to a usable figure?

Many thanks for any insights.

Steve

 
The reason is the nature of the doubles (Wiki..). Use DoubleToString() or PrintFormate() to get an "pleasant look".
 

The price IS normalized.

If you need to display or Print use DoubleToStr()

 
Ah lovely, thank you both :)
Reason: