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

Spécifications

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

Répondu

1
Développeur 1
Évaluation
(493)
Projets
1022
58%
Arbitrage
30
27% / 23%
En retard
133
13%
Travail
2
Développeur 2
Évaluation
(588)
Projets
1065
50%
Arbitrage
39
28% / 41%
En retard
49
5%
Gratuit
Publié : 1 article, 8 codes
3
Développeur 3
Évaluation
(40)
Projets
106
52%
Arbitrage
17
12% / 65%
En retard
25
24%
Gratuit
4
Développeur 4
Évaluation
(473)
Projets
1139
44%
Arbitrage
51
31% / 33%
En retard
501
44%
Gratuit
5
Développeur 5
Évaluation
(265)
Projets
597
35%
Arbitrage
64
20% / 58%
En retard
147
25%
Gratuit
Publié : 1 article, 22 codes
6
Développeur 6
Évaluation
(28)
Projets
46
48%
Arbitrage
2
50% / 50%
En retard
0
Gratuit
7
Développeur 7
Évaluation
(281)
Projets
650
28%
Arbitrage
112
19% / 62%
En retard
319
49%
Gratuit
8
Développeur 8
Évaluation
(618)
Projets
1428
59%
Arbitrage
31
81% / 0%
En retard
10
1%
Gratuit
9
Développeur 9
Évaluation
(279)
Projets
341
37%
Arbitrage
6
50% / 17%
En retard
7
2%
Gratuit
Publié : 5 codes
10
Développeur 10
Évaluation
(163)
Projets
258
61%
Arbitrage
4
50% / 25%
En retard
10
4%
Gratuit
11
Développeur 11
Évaluation
(69)
Projets
146
34%
Arbitrage
13
8% / 62%
En retard
26
18%
Gratuit
Publié : 6 codes
12
Développeur 12
Évaluation
(42)
Projets
112
56%
Arbitrage
2
50% / 0%
En retard
3
3%
Gratuit
Publié : 1 code
13
Développeur 13
Évaluation
(96)
Projets
143
76%
Arbitrage
0
En retard
2
1%
Gratuit
14
Développeur 14
Évaluation
(6)
Projets
8
13%
Arbitrage
1
0% / 100%
En retard
0
Gratuit
15
Développeur 15
Évaluation
Projets
0
0%
Arbitrage
0
En retard
0
Gratuit
Publié : 9 codes
16
Développeur 16
Évaluation
(15)
Projets
20
15%
Arbitrage
3
0% / 67%
En retard
2
10%
Gratuit
Commandes similaires
Требуется создать советник на основе разворотных паттернов, используя дополнительные индикаторы такие как скользящее среднее, отклонение от скользящей средней, угол наклона скользящей средней. Возможно будет добавлено что то еще по ходу работы
Суть ТС:Приход в POI старшего тф, вход в позицию на младшем тф Анализ графика начинается всегда со старшего тф. Должен быть понятный контекст для работы. Активы: EURUSD, XAUUSD POI старшего таймфрейма: Liquidity (1M, 1W, 1D, 4H, 1H) Imbalance (1M, 1W, 1D, 4H, 1H) Order Block (1M, 1W, 1D, 4H, 1H) HTF Fractals (1M, 1W, 1D, 4H, 1H) Всегда дожидаться цену в POI старшего таймфрейма. Вход в позицию: Слом LTF структуры на
к примеру 10 стратегий выстреливают одновременно в одну и ту же милисекунду при открытие бара надо их сделать последовательными один за другим, с проверкой, что предыдущий ордер был открыт и модифицирован SL TP оредра могут быть отложенные и маркет пока один ордер исполняется другие ждут в очереди так как используется ММ настоящий баланс double Total_Current_Risk() { double res = 0; for (int i = 0; i <

Informations sur le projet

Budget
30+ USD