Job finished
Execution time 16 hours
Feedback from customer
Programmer motion helpful and professional. Recommended!!
Specification
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); }
Responded
1
Rating
Projects
1410
67%
Arbitration
123
32%
/
41%
Overdue
218
15%
Free
Published: 1 code
2
Rating
Projects
789
71%
Arbitration
9
33%
/
33%
Overdue
22
3%
Free
Published: 8 codes
3
Rating
Projects
412
61%
Arbitration
13
38%
/
23%
Overdue
163
40%
Free
Published: 45 articles, 1 code
4
Rating
Projects
1462
63%
Arbitration
21
57%
/
10%
Overdue
43
3%
Free
5
Rating
Projects
2912
63%
Arbitration
122
44%
/
25%
Overdue
429
15%
Working
6
Rating
Projects
1810
61%
Arbitration
14
64%
/
7%
Overdue
84
5%
Free
Project information
Budget
10 - 15 USD
Deadline
from 1 to 3 day(s)