Aggressive scalp ea

 

thats result:

click detailedstatement

eur/usd 2 days result

 
escape:
thats result:

click detailedstatement

eur/usd 2 days result

its free ea?

 
Linuxser:
its free ea?

no problem friend

Files:
escape.ex4  7 kb
 

broker restriction

can go for 5 pips or 10 pips ?

my broker have restriction

 
escape:
no problem friend

Hi, i cannot do test... is it 4 digits?

 

...

Yes, it is for 4 digit brokers (so multiply the first 4 parameters with 10 for 5 digit broker and eventually the Slippage parameter too)

But also be careful with it

Files:
 
mladen:
Yes, it is for 4 digit brokers (so multiply the first 4 parameters with 10 for 5 digit broker and eventually the Slippage parameter too) But also be careful with it

What was MaxDD before a crush?

 

too many trades opened

escape :

thanks for your EA

per minute sometimes opened up to 12 trades

too many

can add a control feature to EA limiting it to open xx numbers of trade per miniute ?

 

5 digit and mql

for (int i=10; i<OrdersTotal() here i=? you can change order total

extern double lTakeProfit = 20;

extern double sTakeProfit = 20; t/p if you want change

extern double Lots = 0.1; lots

and for margin setting

if(AccountFreeMargin()<(1000*Lots))

I didnt use stoploss and trialling stop

Files:
escapee.mq4  5 kb
 
mladen:
I don know It keeps its loosing trades open and adds new ones with projected 2 pips take profit. When the loosing ones come together, it goes down (that test took 4 trading days to do that).

you can change your strategy

double diClose0=iClose(NULL,5,0);

double diMA1=iMA(NULL,5,5,0,MODE_SMA,PRICE_OPEN,0);

double diClose2=iClose(NULL,5,0);

double diMA3=iMA(NULL,5,4,0,MODE_SMA,PRICE_OPEN,0);

MODE_SMA-EMA .......etc

PRICE_OPEN-CLOSE-HIGH-LOW......etc

you decide

 

That is not what I was talking about

_______________________________

I said that the EA is not closing trades that are loosing (there is no stop loss, which is more or less fancy for a scalping EA these days, nor it takes care internally of those trades - with a sort of equity protection, hidden stop loss, or anything similar...)

The strategy change you are talking about is exclusively about how to change the way EA enters trades, not how or when to exit and prevent big losses.

_______________________________

regards

mladen

escape:
you can change your strategy

double diClose0=iClose(NULL,5,0);

double diMA1=iMA(NULL,5,5,0,MODE_SMA,PRICE_OPEN,0);

double diClose2=iClose(NULL,5,0);

double diMA3=iMA(NULL,5,4,0,MODE_SMA,PRICE_OPEN,0);

MODE_SMA-EMA .......etc

PRICE_OPEN-CLOSE-HIGH-LOW......etc

you decide
Reason: