Experts: Huge Income

 

Huge Income:

Start balance 10000$, trade on eur/usd ,Daily timeframe, only short

Author: christopher

 

Hi Chris,

Could you put the setting and whats the best pair for this EA?

 

EA code is nice and simple code. I always like these one-block EA's.


Warning: The site that Chris10 has listed inside the EA seems like a trojan ridden piece of crap. I would advise anyone not to go there because it is just for advertising and computer begins to go slow the second you arrive. I've gotten bugged this way in the past so...fair warning to fair people.

 
hi the EA is good but then please put the CURRENCY pair in which ypu have tested and also the time frame on which it is tested ..
 
Has anyone got anything this guy posted to work?
 

Changed code to allow optimisation and made relative to the current time frame instead of daily only.

extern double lot = 0.1;
extern double marketclosehour = 23; // on friday
extern double bval = 15;
extern double sval = 15;

int start()
{
double h1 = iHigh(NULL,0,0);
double l1 = iLow(NULL,0,0);
double o1 = iOpen(NULL,0,0);
{
if ((Bid>o1 && (o1-l1)>bval*Point) && OrdersTotal()<1 && Hour()<22)
OrderSend(Symbol(),OP_BUY,lot,Ask,0,0,0,"Easiest ever",0,0);

if ((Ask<o1 && (h1-o1)>sval*Point) && OrdersTotal()<1 && Hour()<16)
OrderSend(Symbol(),OP_SELL,lot,Bid,0,0,0,"Easiest ever",0,0);
{
for (int i=0; i<OrdersTotal(); i++)
{
if (OrderSelect(i,SELECT_BY_POS,MODE_TIME)==true)
if (OrderType()==OP_BUY && Hour()>marketclosehour-1)
OrderClose(OrderTicket(),OrderLots(),Bid,0,CLR_NONE);

if (OrderType()==OP_SELL && Hour()>marketclosehour-1)
OrderClose(OrderTicket(),OrderLots(),Ask,0,CLR_NONE);
}
}
}
return(0);
}
//+------------------------------------------------------------------+

 

"Changed code"

Tested? Well, I just can't belive the stats. Anyway, you can add something like "money management"... or just to ... WAIT!

Was it 1 year test or 5 year test?

 
jassim:

Hi Chris,

Could you put the setting and whats the best pair for this EA?


jassim:

Hi Chris,

Could you put the setting and whats the best pair for this EA?


charleysgn

seems to work on USD/JPY short term M30, just be careful, it will instantly place another order

 
This EA is Bullshit
Reason: