Trend Trader EA with hedging and price trailing capabilities

MQL5 エキスパート

指定

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);
}















応答済み

1
開発者 1
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
2
開発者 2
評価
(42)
プロジェクト
70
43%
仲裁
6
33% / 50%
期限切れ
19
27%
類似した注文
Hello, i have a custom indicator on pinescript and i would like to convert it to a EA. Indicator basically gives buy sell signals and based on that orders to be placed and reversed. To give you complete requirement: 1. Use the TV pine script and convert it to EA 2. Reverse signals i.e. when buy order is running and sell signal shows then close previous order and open signal. 3. No
I need an EA that use the following Strategie. Please watch the videos on the Youtube channel. The EA should work on every Plattform https://www.youtube.com/@MXProfits/videos I need video call to explain
See the video and expert advisor should cater to all the requirements and setups shown in below video. Expert advisor will work on just 1 symbol and 1 timeframe which is present on the chart to which is attached. https://www.youtube.com/watch?v=PjigwAmhiT0&amp ;t=892s trading system is based on stochastic oscillators, particularly what "quad rotation" and divergences. Need to use four stochastic bands (9,3 - 14,3 -
MT5 中运行的 EA 的主要任务 : 1 EA 将同时选择两对货币进行交易,包括 AUDUSD 、 EURUSD 、 GBPUSD 、 NZDUSD 、 USDCAD 、 USDCHF 、 USDJPY 、 AUDJPY 、 EURAUD 、 EURJPY 、 GBPJPY 、 GBPNZD 和 GBPCHF ,默认设置 GBPUSD 、 EURAUD 。 2 蜡烛图 的时间 区间 包括 15M 、 30M 、 1H 、 2H 、 4H 或 1D 。对于两对货币中的 每一对而言, 将同时密切观察两个 时间区间图。 也就是说,两对 货币 同时 打开 四个窗口,每对默认设置 15M 和 4H 。 如果 您 不肯定如何 为同一货币对打开两个窗口,请不要考虑接受这项工作 。 3 将使用自主开发的指标 CMA 结合 CCI 预测走势。 在某些特殊情况下 ,将使用 马丁格尔策略进行操作。因此,如果您已经拥有基于 Martingale
Required to develop expert advisory which will work on any pair including crypto , forex, gold, silver, oil, simple stragy which will work on RSI,GRID, take profit, grid distance, start and stop button, only buy and only sell, filter for time frame Like 5m to 4 hr. stop loss and take profit .Detail will be shared once you except order
Zzz 30+ USD
// กำหนดค่าตัวแปรพื้นฐาน input double lotSize = 0.1; // ขนาดล็อตที่ต้องการ input int takeProfit = 50; // ระยะ Take Profit (จุด) input int stopLoss = 50; // ระยะ Stop Loss (จุด) input int magicNumber = 123456; // หมายเลข Magic Number input int smaPeriod = 14; // ช่วงเวลา Simple Moving Average (SMA) // เวลาที่ออเดอร์ล่าสุดถูกเปิด datetime lastOrderTime = 0; // ฟังก์ชั่นหลักของ EA void OnTick() { //
Mobile robot 50 - 100 USD
I want a profitable scalping EA robot for mt5 and mobile phones (licence key should be provided).the video link attached below indicates how the EA robot should operate it.it analyses the market before taking trades and it trades candle to candle .also coding samples are provided on the video .it should be applicable to all timeframes.it should trade indices(Nas100,US30,S&p500,GER30,)
I use the translator I hope to make myself understood. I'm looking for a cyclical indicator. mt5. I attach videos to understand how it works. to be inserted at any point of the graph. It is possible to change the color and thickness of the line
This EA must have the following functions together: BE: place BE when the price reach a certain gain in PIPS and you can choose the offset too, so, for example it activates after 10 pips with 1 pip of offset so you can have profit with BE too Auto SL and TP Can manage the trades made by phone when MT5 is open in the PC or VPS Trailing stop (step by step): I can decide at what number of pips the trailing stop get
This is a strategy based on crossing two trend indicators on the second timeframe (1s, for example). We work not only with the market but with the limit orders as well (robot must "read" an order book). Read the whole instruction please for more details. Speak Russian, English

プロジェクト情報

予算
50+ USD
開発者用
45 USD
締め切り
最高 30 日