Posts by carlosforex
|
Hello... Can Anybody help me with this Ea??
There is an option called ShirtProtection... In the MaxLoss, can I set this in percentage not in dollars??
I need that when the equity decrease 20% percent... It close all positions.
|
|
Hello... Can Anybody help me with this Ea??
There is an option called ShirtProtection... In the MaxLoss, can I set this in percentage not in dollars??
I need that when the equity decrease 20% percent... It close all positions.
|
|
Thank you, but I still do not understand... What do I have to do with what you wrote before?
|
|
[quote]
Raiden posted:
More specifics would help.
By the title, it also sounds more like a trade management EA. Steve Hopwood wrote an excellent Multi Purpose Trade Management EA (MPTM). Read its documentation, it'd probably do what you want.
That said:
extern bool EquityStopLoss = TRUE;
extern double EquityPercent = 10.0; //for 10% drawdown
int start(){
if(EquityStopLoss&&1-AccountEquity()/AccountBalance()>EquityPercent/100){ //if drawdown exceeds 10%
CloseAll(); //Close all trades
}
}
void CloseAll(){ //Close all BUY and SELL orders including Pending Orders if......
|
|
We created a great system.
Look for us as: StockExchange and let me know via e-mail...
Thank you
|
|
Does anyone know how to use this Expert?
Can you help me?
|

Share