MODE_LOTSIZE in mql5

 

Hi,

In MT4 there's symbol properties MODE_LOTSIZE that returns 100000 for standard lot, 10000 for mini lot and 1000 for micro lot. This symbol properties is not exist in MQL5, is there's other symbol properties that's equivalent to MODE_LOTSIZE in mql5?

 
Luandre Ezra:

In MT4 there's symbol properties MODE_LOTSIZE that returns 100000 for standard lot, 10000 for mini lot and 1000 for micro lot. This symbol properties is not exist in MQL5, is there's other symbol properties that's equivalent to MODE_LOTSIZE in mql5?

SYMBOL_TRADE_CONTRACT_SIZE

Also exists in MQL4. All uses of MarketInfo() in MQL4 can be replaced by SymbolInfoInteger() or SymbolInfoDouble().

Reason: