Tâche terminée
Spécifications
Hello coder,
i want simple to modify my Ea to put DispEquityProtection ,Averaging, Use Trailing, MaxSpread ,Change MM , timeFilter and infos on chart left : Spreed ,profit days and all times ,Loss day and all times ,Commisiom , open positions , closed positions and lot size and check some error please contact me for more infos.... many thanks
1)
extern string DispEquityProtection = "if true,
then the expert will protect the account equity to the percent
specified";
extern bool EquityProtection =
true; // if true, then the expert will protect the account
equity to the percent specified
extern string AverageEquityProtection ="percent of the account to protect on a set of trades";
extern int AccountEquityPercentProtection= 75; // percent of the account to protect on a set of trades
2) Change the MM
extern bool
UseMM = true; // enable/disable
auto-calculation for size of lots: false = constant size of lots (value
of parameter "Lots"); true = calculate size of lots by percent from
FreeMargin (parameter "Risk")
extern double Lots = 0.01; // size of lots (used if UseMM = false)
extern double MinLots = 0.01;
extern double MaxLots = 100000.0;
extern double Risk = 0.0;
3)
extern double MaxSpreadWithCommission = 20.0; // (amount pips)
extern double DefaultCommisionPoints = 0; // (amount pips)
4)i want simple to modify my Ea to put DispEquityProtection , Averaging, Use Trailing, MaxSpread ,Change MM , timeFilter and infos on chart left : Spreed ,profit days and all times ,Loss day and all times ,Commisiom , open positions , closed positions and lot size please contact me for more infos.... many thanks
5) extern double TargetTrailing = 10.0;
extern double StepTrailing = 5.0;
6) extern bool Averaging = TRUE;
extern double Multiplier = 1.7;
extern double PipStep = 10.0;
extern int MaxTrades = 30;
Thanks