Quote:
Originally Posted by MQL4
I have a question:
if(bid == 122.15)
I want to replace 122.15 by current market price.
Is there any function that determines current market price?
Thank You.
|
Try this:
if(bid == MarketInfo(Symbol(),MODE_BID))
Hope it helps.