SYMBOL_VOLUME_MIN failure

 

 2 computers, MT5 build 695 on both, same EA:

   bool temp = SymbolInfoDouble(_Symbol,SYMBOL_VOLUME_MIN, minLotSize);

->  minLotSize = 0, temp = true

   temp = SymbolInfoDouble(Symbol(),SYMBOL_VOLUME_MIN, minLotSize);

->  minLotSize = 0, temp = true

   temp = SymbolInfoDouble("EURUSD",SYMBOL_VOLUME_MIN, minLotSize);

->  minLotSize = 0, temp = true

   temp = SymbolInfoDouble("USDCHF",SYMBOL_VOLUME_MIN, minLotSize);

->  minLotSize = 0.01, temp = true


So, for EURUSD i have a constant failure on one computer.

Documentation on MQL5: Standard Constants, Enumerations and Structures / Environment State / Symbol Properties
Documentation on MQL5: Standard Constants, Enumerations and Structures / Environment State / Symbol Properties
  • www.mql5.com
Standard Constants, Enumerations and Structures / Environment State / Symbol Properties - Documentation on MQL5
 

the 2nd computer, hasnt been logged in after initial installation for several months,

and now that i have logged in, it started misbehaving as the first one: min lotsize is 0 for EURUSD,

and for other instruments it is OK. 

Reason: