Looking for developer to convert mt4 indicator to mt5 indicator exactly as this mt4

MQL5 Converting

Specification


#property indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 DarkGray
#property indicator_color2 DarkGray

extern int ExtDepth = 60;
extern int ExtDeviation = 5;
extern int ExtBackstep = 3;
double G_ibuf_88[];
double G_ibuf_92[];

// E37F0136AA3FFAF149B351F6A4C948E9
int init() {
   IndicatorBuffers(2);
   SetIndexStyle(0, DRAW_ARROW);
   SetIndexArrow(0, 233);
   SetIndexStyle(1, DRAW_ARROW);
   SetIndexArrow(1, 234);
   SetIndexBuffer(0, G_ibuf_88);
   SetIndexBuffer(1, G_ibuf_92);
   SetIndexEmptyValue(0, 0.0);
   IndicatorShortName("ZigZag(" + ExtDepth + "," + ExtDeviation + "," + ExtBackstep + ")");
   return (0);
}

// EA2B2676C28C0DB26D39331A336C6B92
int start() {
   double Ld_16;
   double Ld_24;
   double Ld_32;
   double Ld_40;
   double Ld_48;
   double Ld_56;
   for (int Li_0 = Bars - ExtDepth; Li_0 >= 0; Li_0--) {
      Ld_16 = Low[iLowest(NULL, 0, MODE_LOW, ExtDepth, Li_0)];
      if (Ld_16 == Ld_56) Ld_16 = 0.0;
      else {
         Ld_56 = Ld_16;
         if (Low[Li_0] - Ld_16 > ExtDeviation * Point) Ld_16 = 0.0;
         else {
            for (int Li_4 = 1; Li_4 <= ExtBackstep; Li_4++) {
               Ld_24 = G_ibuf_88[Li_0 + Li_4];
               if (Ld_24 != 0.0 && Ld_24 > Ld_16) G_ibuf_88[Li_0 + Li_4] = 0.0;
            }
         }
      }
      G_ibuf_88[Li_0] = Ld_16;
      Ld_16 = High[iHighest(NULL, 0, MODE_HIGH, ExtDepth, Li_0)];
      if (Ld_16 == Ld_48) Ld_16 = 0.0;
      else {
         Ld_48 = Ld_16;
         if (Ld_16 - High[Li_0] > ExtDeviation * Point) Ld_16 = 0.0;
         else {
            for (Li_4 = 1; Li_4 <= ExtBackstep; Li_4++) {
               Ld_24 = G_ibuf_92[Li_0 + Li_4];
               if (Ld_24 != 0.0 && Ld_24 < Ld_16) G_ibuf_92[Li_0 + Li_4] = 0.0;
            }
         }
      }
      G_ibuf_92[Li_0] = Ld_16;
   }
   Ld_48 = -1;
   int Li_8 = -1;
   Ld_56 = -1;
   int Li_12 = -1;
   for (Li_0 = Bars - ExtDepth; Li_0 >= 0; Li_0--) {
      Ld_32 = G_ibuf_88[Li_0];
      Ld_40 = G_ibuf_92[Li_0];
      if (Ld_32 == 0.0 && Ld_40 == 0.0) continue;
      if (Ld_40 != 0.0) {
         if (Ld_48 > 0.0) {
            if (Ld_48 < Ld_40) G_ibuf_92[Li_8] = 0;
            else G_ibuf_92[Li_0] = 0;
         }
         if (Ld_48 < Ld_40 || Ld_48 < 0.0) {
            Ld_48 = Ld_40;
            Li_8 = Li_0;
         }
         Ld_56 = -1;
      }
      if (Ld_32 != 0.0) {
         if (Ld_56 > 0.0) {
            if (Ld_56 > Ld_32) G_ibuf_88[Li_12] = 0;
            else G_ibuf_88[Li_0] = 0;
         }
         if (Ld_32 < Ld_56 || Ld_56 < 0.0) {
            Ld_56 = Ld_32;
            Li_12 = Li_0;
         }
         Ld_48 = -1;
      }
   }
   for (Li_0 = Bars - 1; Li_0 >= 0; Li_0--) {
      if (Li_0 >= Bars - ExtDepth) G_ibuf_88[Li_0] = 0.0;
      else {
         Ld_24 = G_ibuf_92[Li_0];
         if (Ld_24 != 0.0) G_ibuf_92[Li_0] = Ld_24;
      }
   }
   return (0);
}

Responded

1
Developer 1
Rating
(15)
Projects
23
9%
Arbitration
7
29% / 57%
Overdue
2
9%
Free
2
Developer 2
Rating
Projects
0
0%
Arbitration
0
Overdue
0
Free
3
Developer 3
Rating
(19)
Projects
21
5%
Arbitration
1
0% / 100%
Overdue
1
5%
Free
4
Developer 4
Rating
(37)
Projects
37
24%
Arbitration
0
Overdue
0
Free
5
Developer 5
Rating
Projects
0
0%
Arbitration
0
Overdue
0
Free
6
Developer 6
Rating
(50)
Projects
55
60%
Arbitration
2
0% / 0%
Overdue
1
2%
Free
Similar orders
I need two bots converted from MQL4 to MQL5. They have indicators and order types inside, I will provide the source code etc when agreed. Please message me for more details
Hello. I have 2 indicators from pinescript that I am looking for a conversion to ninjascript. The first indicator is about 60 lines of code. The second indicator is about 100 lines of code. My code is very neat and organized easy to follow. The math and logic in the code *must* be converted exactly or the indicators will be useless
Hello Everyone, In Trading view there is a Script named 'Fibonacci Trend Reversals', I want's the same convert it into MT5 Indicator. The script giving Buy & Sell Signals with 2 Targets as TP1 & TP2, want the same into MT5. Also requires the same Input that the Indicator having, for ref. Screenshots attached
I have a strategy that is based on an indicator that I have in trading view, and I want to automate this strategy for mt4 or mt5. Pls reach out to me of you have the right profession for converting tradingview strategy to metatrader thanks
I have the source file for a FOREX EA that I would like to modify to allow it to trade crypto currencies. It currently gives the error that the currency is not recognized when trying to back test and optimize the EA. Will need the EA to recognize BTC/ETH/SOL pairs and be able to trade crypto currencies
I have a strategy that is based on an indicator that I have in trading view, and I want to automate this strategy for mt4 or mt5. Pls reach out to me of you have the right profession for converting tradingview strategy to metatrader thanks
I want to clarify some points, such as: When entering into a buy deal, he opens three deals, each deal has a different take profit and one stop loss. When you look at the code, you will know that there are three take-profit. It opens one deal, taking one profit and adding risk management as well An information screen on the chart shows all the information, I only have $10 for this now, and also I still have more
Witam Szanownych Freelancerów, Mam problem z konwersją strategii EA z MQL4 do MQL5. W zasadzie konwertuje za pomocą skryptu: mq4to5rewrite_sample_v4_2 kończy się sukcesem, ale daje wynik w pliku mq5, który nie daje się skompilować. System występowania o błędach, których ja z braku dostępu do języka MQL nie jest możliwy do zastosowania. W związku z tym mam prośbę o: a) konwersję i przygotowanie pliku żródłowego MQL5
I need someone to convert my Ninjatrader Indicator to Sierrachart, The goal of the indicator is to plot levels on a chart from text or csv inputs. We are trying to plot various levels on Futures. Attached is the txt format we use for Ninja and the csv we created for Sierra. If the file needs to be in a different format we can work on that. What the indicator needs to be able to do is the following: - Plot the levels
hi I have a script in Tradingview that looks good which shows the buy and sell automation. I wanted to see if that can be used in ninja Trader so I converted it for Ninja Trader. But it is not triggering the buy or sell trade like it shows in the tradingview script. Please let me know if you can help me with the script that will work in Ninja Trader just like the one in Trading View. I have the buy and sell signals

Project information

Budget
30+ USD
For the developer
27 USD