Bug - build 190

 
Hi Slawa,

I think I may have discovered a small bug. The following prints a 0...

Print("Spread: " + DoubleToStr(MarketInfo(Symbol(), MODE_SPREAD), 4));
 
what broker are you using?

some brokers have their spread set to 0, as it is returned my marketinfo.

try using:
MathRound((Ask-Bid)/Point)


instead of

MarketInfo(Symbol(), MODE_SPREAD)
Reason: