if(MarketInfo("EURUSD",MODE_BID) == 1.3405) { OrderSend(....); }
Don't compare doubles with equality Working with Doubles in MQL4
if (MathAbs(Bid-1.3405) < Point) ...

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
example:i have an expert based on moving average or any other strategy,& i want to start only if BID touch 1.3405 EUR/USD?
thanks