Hello pls i need hekp with a code review of my code: The error message is attached in the image

 
//+------------------------------------------------------------------+
//|                                                        robot.mq5 |
//|                                                 Ebisintei Dennis |
//|                                             ebisinteidennnis.xyz |
//+------------------------------------------------------------------+
#property copyright "Ebisintei Dennis"
#property link      "ebisinteidennnis.xyz"
#property version   "1.00"
//+------------------------------------------------------------------+
//| Expert initialization function                                   |
//+------------------------------------------------------------------+
int OnInit()
  {
//--- create timer
   EventSetTimer(60);
   
//---
   return(INIT_SUCCEEDED);
  }
//+------------------------------------------------------------------+
//| Expert deinitialization function                                 |
//+------------------------------------------------------------------+
void OnDeinit(const int reason)
  {
//--- destroy timer
   EventKillTimer();
   
  }
//+------------------------------------------------------------------+
//| Expert tick function                                             |
//+------------------------------------------------------------------+
void OnTick()
  {
  if(Close[1] > iMA(Symbol(), 0,200,1,0, PRICE_CLOSE, 0) & Close[2]< iMA(Symbol(), 0,200,1,0, PRICE_CLOSE, 0) )
  {
  OrderSelect(0, SELECT_BY_POS);
  OrderClose(OrderTicket(),1, Bid, 100, clrBlack);
  OrderSend(Symbol(), OP_BUY,1, Ask, 100,0, NULL, 0,0, clrAliceBlue);
      
  }
  }
  
  
  {
  if(Close[1] < iMA(Symbol(), 0,200,1,0, PRICE_CLOSE, 0) & Close[2]> iMA(Symbol(), 0,200,1,0, PRICE_CLOSE, 0) )
  {
  OrderSelect(0, SELECT_BY_POS);
  OrderClose(OrderTicket(),1, Bid, 100, clrBlack);
  OrderSend(Symbol(), OP_BUY,1, Ask, 100,0, NULL, 0,0, clrAliceBlue);
  }
  }
//+------------------------------------------------------------------+


Files:
 

You are using MQL4 functionality to code an MQL5 EA. That will not work. The two platforms are not compatible, and there are many differences between the MQL4 and MQL5 languages.

You will need to dedicate some time to learning how MQL5 Trade functionality differs from that of MQL4.

Also, study the difference how Indicator functions are used between the two. In MQL5 you first need to obtain a handle and then use CopyBuffer to get the values.

Your code also has unbalanced braces. You should fix that too.