same EA...BUT DIFFERENT RESULT

 

EURUSD....M1 APPLY

int start()

{

if(iRSI(NULL,0,14,PRICE_CLOSE,0)<25)
{
ticket=OrderSend(Symbol(),OP_BUY,1,Ask,3,Bid-250*Point,Ask+250*Point,"My order #2",1440,0,Green);
if(ticket<0)
{
Print("OrderSend failed with error #",GetLastError());
return(0);
}
}
if(iRSI(NULL,0,14,PRICE_CLOSE,0)>25)
{
ticket=OrderSend(Symbol(),OP_SELL,1,Bid,3,Ask+250*Point,Bid-250*Point,"My order #2",1440,0,Green);
if(ticket<0)
{
Print("OrderSend failed with error #",GetLastError());
return(0);
}
}

//--

return(0);

}

 
Was it run under the same conditions? (was the terminal online while running? If so, spread might have changed....).
 

K

As Gordon suggests, the huge difference in total trades (assuming same period) could be accounted for by different spread conditions

Also, with such low modelling quality, the results are not of any real value anyway :(

-BB-

Reason: