Need help compiling small EA-no PC [Africa]

 
Use the CODE button (Alt-S) when inserting code.

A moderator corrected the formatting this time. Please format code properly in future; posts with improperly formatted code may be removed.

Hi guys,

I have no PC/laptop and can't compile. Can someone please compile this.mq5 to.ex5 for MT5?

It's just RSI buy/sell with SL/TP. 30 lines.

If possible please email to: <email was deleted by moderator>

Code:

//+------------------------------------------------------------------+
//| ConquerXAI.mq5 |
//+------------------------------------------------------------------+
#property copyright "ConquerXAI"
#property version "1.00"
#property strict
#include <Trade/Trade.mqh>
CTrade trade;
input int RSI_Period = 14;
input int RSI_BuyLevel = 30;
input int RSI_SellLevel = 70;
input double Lots = 0.01;
input int StopLoss = 200;
input int TakeProfit = 100;
input int MagicNumber = 20260412;
int rsi_handle; double rsi_buffer[];
int OnInit(){rsi_handle=iRSI(_Symbol,PERIOD_CURRENT,RSI_Period,PRICE_CLOSE);
if(rsi_handle==INVALID_HANDLE)return(INIT_FAILED);
ArraySetAsSeries(rsi_buffer,true);return(INIT_SUCCEEDED);}
void OnTick(){static datetime t=0;datetime ct=iTime(_Symbol,PERIOD_CURRENT,0);
if(t==ct)return;t=ct;if(PositionSelect(_Symbol))return;
if(CopyBuffer(rsi_handle,0,1,rsi_buffer)<=0)return;double rsi=rsi_buffer[0];
double ask=SymbolInfoDouble(_Symbol,SYMBOL_ASK),bid=SymbolInfoDouble(_Symbol,SYMBOL_BID);
double point=SymbolInfoDouble(_Symbol,SYMBOL_POINT);int digits=(int)SymbolInfoInteger(_Symbol,SYMBOL_DIGITS);
double sl_dist=StopLoss*point*10,tp_dist=TakeProfit*point*10;
if(rsi<RSI_BuyLevel){double sl=NormalizeDouble(ask-sl_dist,digits);
double tp=NormalizeDouble(ask+tp_dist,digits);trade.SetExpertMagicNumber(MagicNumber);
trade.Buy(Lots,_Symbol,ask,sl,tp,"ConquerXAI Buy");}
if(rsi>RSI_SellLevel){double sl=NormalizeDouble(bid+sl_dist,digits);
double tp=NormalizeDouble(bid-tp_dist,digits);trade.SetExpertMagicNumber(MagicNumber);
trade.Sell(Lots,_Symbol,bid,sl,tp,"ConquerXAI Sell");}}

Thank you so much. God bless.

 <email was deleted by moderator>