please,how start an expert if bid touch 1.3405?

 
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) ...