- Returns exactly the same as Point() or _Point. In your case 0.00001. 1e-005 == 0.00001.
- RTFM Print - MQL4 DocumentationData of double type are shown with the accuracy of up to 16 digits after a decimal point, and can be output either in traditional or in scientific format, depending on what entry will be more compact.
- If you want to print number properly in strict, format it.
string price_as_string(double p){return DoubleToStr(p,_Digits); } Print(price_as_string(_Point));
- Don't double post

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
MarketInfo(Symbol(), MODE_POINT) will return gibberish when expert is compiled with '#property strict'?
I just turned again into playing with mql and got into this issue. Anyone know anything about it?
[UPDATE] it appears the same when using Point property.
This happens to me in strategy tester. The logs says something like:
2015.09.05 18:51:42.839 2015.09.03 23:56 MyExpert EURUSD,M1: info Bid: 1.11247 ask: 1.11397 point: 1e-005