Работа завершена
Время выполнения 16 часов
Отзыв от заказчика
Programmer motion helpful and professional. Recommended!!
Техническое задание
Hi, I need to correct this code. When the MA3 crosses the RSI2 from the bottom up, it must appear to the arrow. I wrote this code but it does not work. Thanks, Max.
#property indicator_chart_window #property indicator_buffers 1 #property indicator_type1 DRAW_ARROW #property indicator_width1 1 #property indicator_color1 clrGreen #property indicator_label1 "Buy" input int Period_RSI=2; input int Period_MA=3; //--- indicator buffers double Buffer1[]; //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ int OnInit() { IndicatorBuffers(2); SetIndexBuffer(0, Buffer1); SetIndexEmptyValue(0, 0); SetIndexArrow(0, 241); 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[]) { double RSI[]; double MA[]; RSI[0]= iRSI(NULL,PERIOD_CURRENT,Period_RSI,PRICE_CLOSE,0); MA[0]= iMA(NULL,PERIOD_CURRENT,Period_MA,0,MODE_SMA,PRICE_CLOSE,0); int limit = rates_total - prev_calculated; //--- counting from 0 to rates_total ArraySetAsSeries(Buffer1, true); //--- initial zero if(prev_calculated < 1) { ArrayInitialize(Buffer1, 0); } else limit++; //--- main loop for(int i = limit-1; i >= 0; i--) { if (i >= MathMin(300-1, rates_total-1-50)) continue; //Indicator Buffer 1 if (iMAOnArray(RSI,0,Period_MA,0,0,1)< iRSIOnArray(MA,0,Period_RSI,0)//Cross MA-RSI && iMAOnArray(RSI,0,Period_MA,0,0,0)>iRSIOnArray(MA,0,Period_RSI,0) ) { Buffer1[i] = Low[i] - 10 *Point(); } else { Buffer1[i] = 0; } } return(rates_total); }
Откликнулись
1
Оценка
Проекты
1410
67%
Арбитраж
123
32%
/
41%
Просрочено
218
15%
Свободен
Опубликовал: 1 пример
2
Оценка
Проекты
789
71%
Арбитраж
9
33%
/
33%
Просрочено
22
3%
Свободен
Опубликовал: 8 примеров
3
Оценка
Проекты
412
61%
Арбитраж
13
38%
/
23%
Просрочено
163
40%
Свободен
Опубликовал: 45 статей, 1 пример
4
Оценка
Проекты
1462
63%
Арбитраж
21
57%
/
10%
Просрочено
43
3%
Свободен
5
Оценка
Проекты
2912
63%
Арбитраж
122
44%
/
25%
Просрочено
429
15%
Работает
6
Оценка
Проекты
1810
61%
Арбитраж
14
64%
/
7%
Просрочено
84
5%
Свободен
Информация о проекте
Бюджет
10 - 15 USD
Сроки выполнения
от 1 до 3 дн.