Trend Trader EA with hedging and price trailing capabilities

MQL5 Experts

Specification

Particular features:

  1. establish the trend using a nonlagma (below is the mt4 code for this indi, but I want this algorithm to be inserted in the EA, I don't want the EA to call the indicator)angle and price relationship with it (Trend = disabled OR price OR angle OR both; Example: price above MA => uptrend OR MA rises => uptrend OR MA rises and price above it => uptrend) - have this MA drawn on the chart
  2. enter a trade based on the (same algorithm) nonlagma indicator  - have this signal MA drawn on the chart, or some arrow when trade signal occurs
  3. confirm the entry if the price is at a minimum distance away from the latest HH or LL (depending whether the EA buys or - need to set the number of pips from the EA's settings - have the HH or LL (ie swing) drawn on the chart, for example a horizontal line, just like a price level
  4. trail the price using a moving average, ATR, psar, chandelier, pips, fractals (need to be able to select one of this from a drop-down, and have the settings for each to customize) - have the trailing signal drawn on the chart
  5. when the trend changes and there is an opposite trade signal, I want the EA to be able to (if set to do so):
  • close the losing trade and open a new trade according to new signal
  • open a hedging trade and continue hedging if trend reverses back and then again, increasing the lotsize (similar to a martingale, only with the trend) Example: buy 1$ - trend reverses, sel 2$- trend reverses, again buy 4$ etc. Need to have a lfor hedging trades, that will calculate the next lotsize based on all the sells vs all the buys. This means that if the multiplier is 2, then the trades same as the first one (ex buys) are 2 times smaller than the trade same as last one (ex sells). Let me know if it's hard to understand :)
  • do nothing (and wait for the price to hit the SL)

General features (basically everything that others have):

  1. set a fixed lotsize or percentage of free margin
  2. restrict trading by days, hours/market sessions
  3. restrict/stop trading after a given number of trades
  4. close opened trades if a maximum loss occurs
  5. close opened trades if a minimum profit is reached - used when hedging, to allow the EA to close a set of trades that have finally reached a positive profit
  6. set TP, SL and BE
  7. set magic number and comments
  8. martingale - disable/enable and also must have a quotient just like the hedging, so I can choose how much more to risk on the next trade

Other things to consider: I do not care much about time. I also need time to test its functionality, so I'm not in a hurry. I believe that we can wait for each other a little longer, until we are both happy with the result. If the EA will have a small info on the chart, writing about trend, trades, profit etc and other useful info such as max lotsize, broker time, name and so on, it will be even better for my visual.

The nonlagma code used for the trend and signal must have different settings that I can choose from the EA settings. For example Trend nonlagma = 100, signal nonlagma = 10.

For a better understanding of what I need, here's how I imagine the EA's settings:

Trading Sundays = false/true

Trading Mondays = false/true

...

Trading Sessions = true/false (false means ignore the sessions)

Asian session start = 23:00

Asian session finish = 8:00

London session start ...

...

Trend = price / angle / both / disabled

Trend period = 100

Trend price = close/open/etc

Signal = 10

Signal period = 100

Signal price = close/open/etc

Signal shift = 1 (ie bar)

Lotsize management = true/false

Percentage = 0.01 (if above is true)

Fixed = 0.1 (if management = false)

Minimum profit = 1$

Maximum loss = 100$

Maximum trades opened = 4

Stoploss = 30 pips

Take profit = 50 pips

Breakeven = 30 pips

Trailing stop = psar/moving average/chandelier/fractals  (ie candlestick)/atr/pips

Trailing Buffer = 5 pips

Trailing PSAR settings = ...

Trailing MA settings = ...etc

...

Slippage = 3 pips

Magic Number = 333

Trade comment = I am a winner lol

Opposite trade signal = close loser and open new trade accordingly / open hedging trade / do nothing

Hedging Multiplier = 2

Close basket of opposite trades if profit >= Minimum profit (above) = true/false

Close basket of opposite trades if profit <= Maximum loss (above) = true/false

Martingale if last trade closed in negative profit = true/false

Martingale multiplier = 2

Martingale tries = 3 (how many consecutive losses are allowed before we give up and the lotsize resumes to normal)

I hope that I have managed to paint the entire picture. If not, I will try to better explain later.

Below is the mq4 non lag moving average algorithm I want to be used for trend and signal:

#property copyright ""
#property link      ""
#property description ""
#property strict
#property indicator_chart_window
#property indicator_buffers 3
#property indicator_color1 Gold
#property indicator_width1 2
#property indicator_color2 Teal
#property indicator_width2 2
#property indicator_color3 Crimson
#property indicator_width3 2
input ENUM_APPLIED_PRICE  Price=0;
extern int     Length         = 15;  //Period of NonLagMA
extern int     Displace       = 0;  //DispLace or Shift 
extern double  PctFilter      = 0;  //Dynamic filter in decimal
extern int     Color          = 1;  //Switch of Color mode (1-color)  
extern int     ColorBarBack   = 1;  //Bar back for color mode
extern double  Deviation      = 0;  //Up/down deviation        
extern int     AlertMode      = 0;  //Sound Alert switch (0-off,1-on) 
extern int     WarningMode    = 0;  //Sound Warning switch(0-off,1-on) 
double MABuffer[];
double UpBuffer[];
double DnBuffer[];
double trend[];
double Del[];
double AvgDel[];
double alfa[];
int i, Phase, Len,Cycle=4;
double Coeff, beta, t, Sum, Weight, g;
double pi = 3.1415926535;    
bool   UpTrendAlert=false, DownTrendAlert=false;
 int OnInit()
  {
   IndicatorBuffers(6);
   SetIndexStyle(0,DRAW_LINE);
   SetIndexBuffer(0,MABuffer);
   SetIndexStyle(1,DRAW_LINE);
   SetIndexBuffer(1,UpBuffer);
   SetIndexStyle(2,DRAW_LINE);
   SetIndexBuffer(2,DnBuffer);
   SetIndexBuffer(3,trend);
   SetIndexBuffer(4,Del);
   SetIndexBuffer(5,AvgDel); 
   string short_name;
   IndicatorDigits(int(MarketInfo(Symbol(),MODE_DIGITS)));
   short_name="NonLagMA ("+IntegerToString(Length)+")";
   IndicatorShortName(short_name);
   SetIndexLabel(0,"Level");
   SetIndexLabel(1,"Up");
   SetIndexLabel(2,"Dn");
   SetIndexShift(0,Displace);
   SetIndexShift(1,Displace);
   SetIndexShift(2,Displace);
   SetIndexEmptyValue(0,EMPTY_VALUE);
   SetIndexEmptyValue(1,EMPTY_VALUE);
   SetIndexEmptyValue(2,EMPTY_VALUE);
   SetIndexDrawBegin(0,Length*Cycle+Length+1);
   SetIndexDrawBegin(1,Length*Cycle+Length+1);
   SetIndexDrawBegin(2,Length*Cycle+Length+1);
   Coeff =  3*pi;
   Phase = Length-1;
   Len = Length*4 + Phase;  
   ArrayResize(alfa,Len);
   Weight=0;    
      for (i=0;i<Len-1;i++)
      {
      if (i<=Phase-1) t = 1.0*i/(Phase-1);
      else t = 1.0 + (i-Phase+1)*(2.0*Cycle-1.0)/(Cycle*Length-1.0); 
      beta = MathCos(pi*t);
      g = 1.0/(Coeff*t+1);   
      if (t <= 0.5 ) g = 1;
      alfa[i] = g * beta;
      Weight += alfa[i];
      }
  return(INIT_SUCCEEDED);
  }
int OnCalculate(const int rates_total,
                const int prev_calculated,
                const datetime &time[],
                const double &open[],
                const double &high[],
                const double &low[],
                const double &close[],
                const long &tick_volume[],
                const long &volume[],
                const int &spread[])
  {
   int  shift=0, counted_bars=IndicatorCounted(),limit=0;
   double price=0, Filter=0;      
   if ( counted_bars > 0 )  limit=Bars-counted_bars;
   if ( counted_bars < 0 )  return(0);
   if ( counted_bars ==0 )  limit=Bars-Len-1; 
   if ( counted_bars < 1 ) 
   for(i=1;i<Length*Cycle+Length;i++) 
   {
   MABuffer[Bars-i]=0;    
   UpBuffer[Bars-i]=0;  
   DnBuffer[Bars-i]=0;  
   }
   for(shift=limit;shift>=0;shift--) 
   {    
      Sum = 0;
      for (i=0;i<=Len-1;i++)
           { 
      price = iMA(NULL,0,1,0,3,Price,i+shift);      
      Sum += alfa[i]*price;
      }
        if (Weight > 0) MABuffer[shift] = (1.0+Deviation/100)*Sum/Weight;
      if (PctFilter>0)
      {
      Del[shift] = MathAbs(MABuffer[shift] - MABuffer[shift+1]);
      double sumdel=0;
      for (i=0;i<=Length-1;i++) sumdel = sumdel+Del[shift+i];
      AvgDel[shift] = sumdel/Length;
      double sumpow = 0;
      for (i=0;i<=Length-1;i++) sumpow+=MathPow(Del[shift+i]-AvgDel[shift+i],2);
      double StdDev = MathSqrt(sumpow/Length); 
      Filter = PctFilter * StdDev;
      if(MathAbs(MABuffer[shift]-MABuffer[shift+1]) < Filter) MABuffer[shift]=MABuffer[shift+1];
      }
      else
      Filter=0;
      if (Color>0)
      {
      trend[shift]=trend[shift+1];
      if (MABuffer[shift]-MABuffer[shift+1] > Filter) trend[shift]= 1; 
      if (MABuffer[shift+1]-MABuffer[shift] > Filter) trend[shift]=-1; 
         if (trend[shift]>0)
         {  
         UpBuffer[shift] = MABuffer[shift];
         if (trend[shift+ColorBarBack]<0) UpBuffer[shift+ColorBarBack]=MABuffer[shift+ColorBarBack];
         DnBuffer[shift] = EMPTY_VALUE;
         if (WarningMode>0 && trend[shift+1]<0 && shift==0) PlaySound("alert2.wav");
         }
         if (trend[shift]<0) 
         {
         DnBuffer[shift] = MABuffer[shift];
         if (trend[shift+ColorBarBack]>0) DnBuffer[shift+ColorBarBack]=MABuffer[shift+ColorBarBack];
         UpBuffer[shift] = EMPTY_VALUE;
         if (WarningMode>0 && trend[shift+1]>0 && shift==0) PlaySound("alert2.wav");
         }
      }
   }   
   string Message;
   if (trend[2]<0 && trend[1]>0 && Volume[0]>1 && !UpTrendAlert)
        {
        Message = " NonLagMA "+Symbol()+" M"+IntegerToString(Period())+": changed to uptrend";
        if ( AlertMode>0 ) Alert (Message); 
        UpTrendAlert=true; DownTrendAlert=false;
        } 
        if ( trend[2]>0 && trend[1]<0 && Volume[0]>1 && !DownTrendAlert)
        {
        Message = " NonLagMA "+Symbol()+" M"+IntegerToString(Period())+": changed to downtrend";
        if ( AlertMode>0 ) Alert (Message); 
        DownTrendAlert=true; UpTrendAlert=false;
        }                
        return(rates_total);
}















Responded

1
Developer 1
Rating
Projects
0
0%
Arbitration
0
Overdue
0
Free
2
Developer 2
Rating
(42)
Projects
70
43%
Arbitration
6
33% / 50%
Overdue
19
27%
Free
Similar orders
1) the EA can compound the lot size from 0.01 to 0.02 so on 2) the EA must able to trade different kind of pair 3) the EA will have stoploss or take profit 4) long term profit 5) for equiry will be 100 for every 0.01 lot Developer will have that kind of EA may apply and introduce any investor account! this EA must have mql4 file
p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 13.0px 'Helvetica Neue'} Hello Looking for someone to help me improve my current strategy on my own algorithm and to also add hedging mode
I want the script in mql5 language for my martingale strategy. The script should open trades in both directions buy and sell and if any trade closes in loss then open new trade in that direction by using the next volume and when trade closes in profit then reset the volume to first from volume list and also maximum consecutive losses limit will apply. If trades closes consecutively in losses and hits the limit then
Long Position 1. Trend Line: When a Lower High (LH) is formed, draw a trend line from the previous Higher High (HH) to the new LH. 2. Trend Line Adjustment: If a new Lower High (LH) is formed without breaking the trend line, redraw the trend line to the new LH. Draw a trend line between the Higher High (HH) and the Higher Low (HL). If a new Higher High (HH) is formed, remove the previous trend line and draw a new one
Please watch the video on this youtube channel and download the Indicator from there. https://www.youtube.com/watch?v=ldTomLu8DxE&amp ;t=32s Rules are explained on the video and the download of the indicator is on the same video
I would like an EA that follows exactly this steps to trade de daily candle. Watch the video and then see if you can do the task. https://www.youtube.com/watch?v=g3oDYq4P9ZE Document is one this link https://cdn.discordapp.com/attachments/1135977927469703230/1135978751461695598/Daily_Bias-TTrades_edu.pdf?ex=669a9a27&amp ;is=669948a7&hm=96de195f7e695a381c1261b065f67b94fae319d02a0c88641b146f8b2978320c& Should have
I have a custom EA that works fine in the live market trading, but when doing a back test in the strategy tester , it does not open sell orders. There are no errors or warnings; it just doesn't open sell orders. I've checked every possible reason that might be the reason why it does not open sell orders, but I can't find anything, especially since it works fine in the real market and it opens both buys and sells
Hi, I have an indicator from my friend, I want to copy it to my own MT5 can you do that for me. Here is the link
I'm looking for someone to help me create an arbitrage trading robot that can trade on any decentralized exchange. I had one created in python, but I would like it to work in MT5 with various regular rules that make it profitable
I installed the E.A. into the Experts folder in MT4. When I double click on it nothing happens. When I right click and "attach to chart" nothing happens. The E.A. is not grayed out, it simply will not attach. Any help would be greatly Appreciated

Project information

Budget
50+ USD
For the developer
45 USD
Deadline
to 30 day(s)