Trade manager , exit manager expert advisor

 

Why do all the free tools not work?Why do commercial trade managers not work?

Is there a free one like this ?

Sample of EA with multiple structure (multiple non conflicting with other eas) enclosed

To develop the E A , to also enter trades , and manage exits as well , should not be conflicting .It can be as a single E A , with the ability to disable all filters , exit manager , lwma filters etc .

We add 3 entry options on input , it will always be buy close of 30 minute bar above or below price ...........x................ ,

inputs exterior options on ex4

1.entry buy now true or false (true will buy now at market)

2 entry close of bar enabled/disabled hardcoded default entry

3entry above or below price .............price level (if 0 disabled, default zero)

4Entry 1 profit target 10 pips

5Entry 2 profit target 30 pips

6 Disable entry 2 true or false (true will disable second entry)

7 price filters true or false (will provide list)

8 lwma filter true or false (will provide list)

9)disable ea entirely true or false

input bool EnableOldExitManager=false;

input bool ManageAllPairs=false;//True=AllPairs False=CurrentSymbol

input int MagicNumber=1111;//0 All magic number

input int StopLoss=300;//0 Disable Stoploss

input int TakeProfit=300;//0 Disable TakeProfit

input string _____Trail_N_BEP____="Trailing Stop and BEP";

input int TrailingStop=300;//0 Disable Trailing Stop

input int TrailingStep=30;// Pips Increament

input int GainForBE= 200;// 0 Disable BEP.

input int PipsBE = 200;// Level at which Break Even will be put

input string _____CloseOnTime____="Close On Times";

input bool CloseOnTime = true;

input int ClosingTime = 1900;

input string _____Dashboard____="Show dashboard";

input bool ShowDashboard=true;

input color DashBoardColor=clrWhite;

extern bool Disable_Comments= false;

string eaId="TM2015";

string ver="TradeManager_";

extern double Lots = 0.01;

You will also have to code

lot size

Maximum lot allowed hard coded in EA.

extern int StartTime = 800; // Start trading at 7:00

extern int StopTime = 759; // Stop trading at 23:00; Set to StartTime for continous operation (default).

extern int Slippage = 3;

extern bool Disable_Comments = false; // EA will not display comments on screen

//---- Debugging

extern bool DoScreenShots = false; // Makes screen shots when a trade is open

after attaching the EA the EA must show 3 exterior ex4 entry options

ENTRY

1 )buy now or sell now .This option must be chosen manually on inputs.This will always be above lwma 18 /30filter for longs as pointed(option 2) or below mas for shorts

2)buy close of bar if price above if price (candle including body and wicks) close above lwma 18 and lwma 30 on 30 minutes , or sell close of bar if price candle close close full body including wicks, candle must not be bigger than 20 pips (input on external dashboard) ,below lwma 18 and lwma 30 on 30 minutes.This option should be default on inputs (E A will trade this automatically , without further instrctions , if this set up is met).

3)range breakout:Buy if price breaks above a certain price or sell if price breaks below a certain price .This will always follow lwma 18/30 (price above mas) filter for longs as pointed(option 2) or below mas for shorts

There will be two entries , one with a target of 30 and another with a target of 10 , both will have stops of 30

Price filters enclosed

LWMA FILTERS enclosed

Exit manager enclosed. This exit manager is working fine.It has 12 exit criterias , only average exit weight required to exit.

 

Since you copied that parameters from some EA, why don't you use that EA?

 
on my own:
Since you copied that parameters from some EA, why don't you use that EA?

There are too many bugs in it , so it can not be used with real money.Only thing working is exit manager

Reason: