Прошу написать советник по данному индикатору (МА по уже расчитаной МА) сигнал по их пересечению

Specification

#property indicator_chart_window
#property indicator_buffers 3
#property indicator_color1 Aqua
#property indicator_color2 Magenta
#property indicator_color3 Orange
//--- input parameters
extern int            Period_1  =20;
extern int            Period_2  =20;
extern int            Period_3  =20;
//--- buffers
double m1[];
double m2[];
double m3[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
int init()
  {
//---- indicators
   IndicatorBuffers(3);
   SetIndexBuffer(0,m1);
   SetIndexBuffer(1,m2);
   SetIndexBuffer(2,m3);
   IndicatorDigits(Digits+1);
//----
   return(0);
  }
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function                       |
//+------------------------------------------------------------------+
int deinit()
  {
//----
   
//----
   return(0);
  }
//+------------------------------------------------------------------+
//| Custom indicator iteration function                              |
//+------------------------------------------------------------------+
int start()
  {
    int counted_bars=IndicatorCounted(),                      
    limit;
 
   if(counted_bars>0)
      counted_bars--;
   
   limit=Bars-counted_bars-1;
      
   for(int i=limit;i>=0;i--)m1[i]=iMA(NULL,0,Period_1,0,MODE_EMA,PRICE_CLOSE,i);  
   for(i=limit;i>=0;i--)m2[i]=iMAOnArray(m1,0,Period_2,0, MODE_EMA,i);
   for(i=limit;i>=0;i--)m3[i]=iMAOnArray(m2,0,Period_3,0, MODE_EMA,i);

   return(0);
  }
//+------------------------------------------------------------------+

Responded

1
Developer 1
Rating
(490)
Projects
1016
58%
Arbitration
29
28% / 24%
Overdue
132
13%
Free
2
Developer 2
Rating
(586)
Projects
1047
49%
Arbitration
39
28% / 41%
Overdue
49
5%
Free
3
Developer 3
Rating
(40)
Projects
106
52%
Arbitration
17
12% / 65%
Overdue
25
24%
Free
4
Developer 4
Rating
(473)
Projects
1138
44%
Arbitration
51
31% / 33%
Overdue
500
44%
Free
5
Developer 5
Rating
(254)
Projects
572
36%
Arbitration
64
20% / 58%
Overdue
147
26%
Free
6
Developer 6
Rating
(21)
Projects
34
56%
Arbitration
0
Overdue
0
Free
7
Developer 7
Rating
(280)
Projects
650
28%
Arbitration
111
19% / 61%
Overdue
319
49%
Free
8
Developer 8
Rating
(548)
Projects
1330
59%
Arbitration
28
82% / 0%
Overdue
10
1%
Free
9
Developer 9
Rating
(256)
Projects
313
37%
Arbitration
6
50% / 17%
Overdue
7
2%
Free
10
Developer 10
Rating
(147)
Projects
235
60%
Arbitration
3
67% / 0%
Overdue
6
3%
Working
11
Developer 11
Rating
(66)
Projects
143
34%
Arbitration
10
10% / 60%
Overdue
26
18%
Free
12
Developer 12
Rating
(42)
Projects
112
56%
Arbitration
2
50% / 0%
Overdue
3
3%
Free
13
Developer 13
Rating
(96)
Projects
143
76%
Arbitration
0
Overdue
2
1%
Free
14
Developer 14
Rating
(6)
Projects
8
13%
Arbitration
1
0% / 100%
Overdue
0
Free
15
Developer 15
Rating
Projects
0
0%
Arbitration
0
Overdue
0
Free
16
Developer 16
Rating
(15)
Projects
20
15%
Arbitration
3
0% / 67%
Overdue
2
10%
Free
Similar orders
I am looking to enhance the profitability of my current Expert Advisor (EA) using a Martingale approach with a CCI Indicator (the code is approximately 1200 lines currently) and would like to implement several key improvements. Below, I have detailed the areas where I believe the EA can be optimized and made more effective and i have provided the code in a .txt file: Note: I would like to run this EA most preferably
Есть советник, нужно только поменять название,описание, сделать привязку к счету, чтобы была защита,чтобы мы могли клиенту давать советник, и была привязка к 1-3 счетам только. Если возможно , сделать привязку к времени, чтобы была привязка лицензии еще на время, например на месяц, 2-3 по ценам договоримся отдельно

Project information

Budget
30+ USD
For the developer
27 USD