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

MQL5 Конвертация

Техническое задание


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

Откликнулись

1
Разработчик 1
Оценка
(15)
Проекты
23
9%
Арбитраж
7
29% / 57%
Просрочено
2
9%
Свободен
2
Разработчик 2
Оценка
Проекты
0
0%
Арбитраж
0
Просрочено
0
Свободен
3
Разработчик 3
Оценка
(19)
Проекты
21
5%
Арбитраж
1
0% / 100%
Просрочено
1
5%
Свободен
4
Разработчик 4
Оценка
(37)
Проекты
37
24%
Арбитраж
0
Просрочено
0
Свободен
5
Разработчик 5
Оценка
Проекты
0
0%
Арбитраж
0
Просрочено
0
Свободен
6
Разработчик 6
Оценка
(50)
Проекты
55
60%
Арбитраж
2
0% / 0%
Просрочено
1
2%
Свободен
Похожие заказы
Project overview. C# for multi charts. Enter single buy and sell stop X points away from current market.(allow SL and TP ) If order is executed another pending order is opened. Allow trailing stop -x points Delete pending order x points away from current market
I want to convert 4 open source pinscript indicators to MQl4 and then DLL format to use on the forex tester. MQl4 can be easily converted to DLL. Some experience with Forext terster would be ideal If you can help I need a file in DLL format . They have instruction in https://forextester.com/forum/viewforum.php?f=9 We can negotiate a price
Hi everyone, Please note, that the strategy i want to conver is using pyramiding setting set to 14 in tw. And tradingview uses some strange technique when it comes to pyramiding. I'm looking for someone who ever dealt with this. Also i would like your help with purchasing a tool/or integrating manually the access to seconds chart, i use my strategy only on 30 sec chart - USTEC icmarkets. I decided to move my strategy
Hello, I am in need of a Professional who can help me to convert my Tradingview to Mt4. Please let me know if this is something you can handle perfectly and your price for the conversion. Looking forward to hear from you. Thanks
Need to convert Thinkorswim strategies, indicators, or custom scripts to NinjaTrader. Offering seamless migration and functionality optimization to ensure your trading systems perform effectively on NinjaTrader. Fast delivery and reliable service
I'm looking for a quote from a developer who can compile this source code as DLL file so that it works on Forex Tester 5 They are all open source trading view indicators. Forextester 5 have advised that custom indicators in C++ or Delphi programme language are compatible with them
Hi I have the code in pinescript for an indicator that I need done in Ninja Trader, I wanted this indicator in NT bcs I chart in NT, and if the indicator could also have been an automated strategy even better. Please confirm that it will be an indicator and Automated Trading Strategy
I am writing to inquire about the possibility of porting a simple project from MQL5 to Quantower using C#. The project in question includes a panel with a button that draws a rectangle on the chart. This rectangle can be freely dragged around the chart area. Additionally, the panel contains two editable fields, X and Y, which display the position of the rectangle. As the rectangle is dragged across the chart, the X
I need a TradingView script (not mine) converted to an Mt5 EA. There is some specifications for the robots on when to be able to take a trade. Attached bellow is the file of the script I want translated and converted to MT5 then EA
hi. I hv a strategy on tradingview need to convert to mt4/mt5 expert advisor for algo trading. would like to add some tradingview strategy setting to the mt4/mt5 EA(not included in my tradingview source code): recalculate after order is filled, order size: xx% of equity

Информация о проекте

Бюджет
30+ USD
Исполнителю
27 USD