Need a coder to make me an EA for MT5

Good Day Fellow Traders

I need assistance with finding someone that can code an EA for MT5. Looking at implementing the EA in stages and improvements will be made on EA as we progress.

Any assistance or direction will be much appreciated

Thank You
AKJ

Just out of interest, did you manage to find anyone and if so, where they any good and able to handle your request?

Im looking for a programmer to code a strategy I use as well. Any help would be appreciated.

H :slight_smile:

Unfortunately, it is not allowed to offer its programming services. The forum rules forbid it. That’s why you won’t find any programmer here.

I am a programmer, but i have no time to write code for others.

//Print(“slam it”);
//return;
stop=0;
tp=0;
gap=0.0005;
//targ=GlobalVariableGet(“TARG1”);
if(optype==1) {stop=targ; tp=bid-(gap3);}
if(optype==0) {stop=targ; tp=ask+(gap
3);}

//if(optype==1) stop=Ask+gap;
//if(optype==0) stop=Bid-gap;
PlaySound(“buzzer.wav”);
//set current tp.dir
for(i=0;i<OrdersTotal();i++)
{
if(OrderSelect(i,SELECT_BY_POS,MODE_TRADES)==false) break;
if(OrderSymbol()!=Symbol()) continue;

//if(OrderStopLoss()!=0) break;

PlaySound(“newtrade.wav”);
int rc=OrderModify(OrderTicket(),0,stop,tp,0,CLR_NONE);
break;
}//for

Sleep(3000);