Aggressive scalp ea - page 45

 
pmacel:
Could we add feature that would allow close all open trades. Close all trades = False/True

a script exists which does that, have a quick search im sure you'll find it

i think it was called close_all

 

Close All Script

BenScoobert:
a script exists which does that, have a quick search im sure you'll find it i think it was called close_all

Perhaps the "close all" script could be added to trigger on trend change signal from a trend indicator and added to the EA code with also a variable set file

for point of close without trend change, like after "x" max. trades?

 

Better to have a script

Set hotkey : Alt+c

My 2c

Files:
closeall.mq4  6 kb
 

Thank you. Would be nice yo have it as part of the EA so It will not open another order until you are ready.

 
shilox:
We have heard all it takes to get dis EA working well enough to get your brokers wanting you out. If you stick to 'em, you wont only smile to the bank, you will laugh.

Hi shilox,

Nice to hear from you. Congrats. Hope this are live trades...:o)

I bet you catch the long UP trend that started 2010.03.10 and keep with it (on your last trades)... I have missed that train (entered late) but made some good profit on it.

Keep the good work

Regards

Paulo

 

if you want you can add

int start()

{

int total = OrdersTotal();

for(int i=total-1;i>=0;i--)

{

OrderSelect(i, SELECT_BY_POS);

int type = OrderType();

bool result = false;

switch(type)

{

//Close opened long positions

case OP_BUY : result = OrderClose( OrderTicket(), OrderLots(), MarketInfo(OrderSymbol(), MODE_BID), 5, Red );

break;

//Close opened short positions

case OP_SELL : result = OrderClose( OrderTicket(), OrderLots(), MarketInfo(OrderSymbol(), MODE_ASK), 5, Red );

}

if(result == false)

{

Alert("Order " , OrderTicket() , " failed to close. Error:" , GetLastError() );

Sleep(3000);

}

}

return(0);

}

pmacel:
Could we add feature that would allow close all open trades. Close all trades = False/True

if you want you can add

int start()

{

int total = OrdersTotal();

for(int i=total-1;i>=0;i--)

{

OrderSelect(i, SELECT_BY_POS);

int type = OrderType();

bool result = false;

switch(type)

{

//Close opened long positions

case OP_BUY : result = OrderClose( OrderTicket(), OrderLots(), MarketInfo(OrderSymbol(), MODE_BID), 5, Red );

break;

//Close opened short positions

case OP_SELL : result = OrderClose( OrderTicket(), OrderLots(), MarketInfo(OrderSymbol(), MODE_ASK), 5, Red );

}

if(result == false)

{

Alert("Order " , OrderTicket() , " failed to close. Error:" , GetLastError() );

Sleep(3000);

}

}

return(0);

}

 

scalper System | Myfxbook

so far not bust

 
BenScoobert:
scalper System | Myfxbook so far not bust

Hi Ben,

Great results.

Can you please tell me:

- What is the version you are using;

- Did you setup stops?;

- How many open orders at the same time?;

Regards

Paulo

 
batalhadematos:
Hi Ben,

Great results.

Can you please tell me:

- What is the version you are using;

- Did you setup stops?;

- How many open orders at the same time?;

Regards

Paulo

ive used the escape 2 reverse2 and escape only, only diifference i see is e2r2 is limited to 6 max trades

ive not used stops but i feel i will use 40 pip stops

at one point i had about 70 orders open

 

hidden TP

escape:
Please read carefully.

most important rules to win forex....

1*read,read,hear, hear,follow data and news

2*discipline,discipline,discipline

3*learn to win in dribs and drabs

3*In addition to winning the lost to know there is

4*Dont panic be cool

5*Learn to analyze and be able to read numbers,

6*set target for yourself(daily,weekly or monthly)

In my broker,take the TP Minimum 10 pips, could you hide the TP

Reason: