Trabajo finalizado
Plazo de ejecución 22 horas
Comentario del Cliente
very serious and professional programmer!
Comentario del Ejecutor
All perfectly! Good man!
Tarea técnica
Hello I need help to change this code.
I wrote the code so as to delay the reading of the conditions after 3 seconds.
I wish that the reading time was between 3 seconds and 25 seconds. If for example the condition occurs after 25 seconds should not appear the arrow of Alert. It's possible?
I wrote the code so as to delay the reading of the conditions after 3 seconds.
I wish that the reading time was between 3 seconds and 25 seconds. If for example the condition occurs after 25 seconds should not appear the arrow of Alert. It's possible?
Greetings Massimo.
#property indicator_chart_window //--- indicator settings #property indicator_chart_window #property indicator_buffers 2 #property indicator_type1 DRAW_ARROW #property indicator_width1 1 #property indicator_color1 0xFFAA00 #property indicator_label1 "Buy" #property indicator_type2 DRAW_ARROW #property indicator_width2 1 #property indicator_color2 0x0000FF #property indicator_label2 "Sell" //--- indicator buffers double Buffer1[]; double Buffer2[]; double myPoint; //initialized in OnInit //+------------------------------------------------------------------+ //| Custom indicator initialization function | //+------------------------------------------------------------------+ int OnInit() { IndicatorBuffers(2); SetIndexBuffer(0, Buffer1); SetIndexEmptyValue(0, 0); SetIndexArrow(0, 241); SetIndexBuffer(1, Buffer2); SetIndexEmptyValue(1, 0); SetIndexArrow(1, 242); return(INIT_SUCCEEDED); } //+------------------------------------------------------------------+ //| Custom indicator iteration function | //+------------------------------------------------------------------+ 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[]) { int i=0; static datetime BarStart=0; static bool check=false; if(BarStart!=Time[0]) { BarStart=Time[0]; check=true; } if(check && TimeCurrent()>=Time[0]+3) { check=false; //Check Condition if(iRSI(NULL, PERIOD_CURRENT, 2, PRICE_CLOSE, i) > 50 && iRSI(NULL, PERIOD_CURRENT, 2, PRICE_CLOSE, i+1) < 50 //Relative Strength Index crosses above fixed value ) { Buffer1[i] = Low[i] - 30 * Point(); //Set indicator value at Candlestick Low - fixed value } else { Buffer1[i] = 0; } //Indicator Buffer 2 if(iRSI(NULL, PERIOD_CURRENT, 2, PRICE_CLOSE, i) < 50 && iRSI(NULL, PERIOD_CURRENT, 2, PRICE_CLOSE, i+1) > 50 //Relative Strength Index crosses below fixed value ) { Buffer2[i] = High[i] + 30 * Point(); //Set indicator value at Candlestick High + fixed value } else { Buffer2[i] = 0; } } return(rates_total); } //+------------------------------------------------------------------+
Han respondido
1
Evaluación
Proyectos
156
44%
Arbitraje
22
41%
/
14%
Caducado
16
10%
Libre
Ha publicado: 10 ejemplos
2
Evaluación
Proyectos
1062
50%
Arbitraje
39
28%
/
41%
Caducado
49
5%
Trabaja
Ha publicado: 1 artículo, 8 ejemplos
3
Evaluación
Proyectos
144
38%
Arbitraje
67
15%
/
48%
Caducado
55
38%
Libre
4
Evaluación
Proyectos
73
16%
Arbitraje
13
8%
/
92%
Caducado
37
51%
Libre
Información sobre el proyecto
Presupuesto
10 - 20 USD
Plazo límite de ejecución
de 2 a 5 día(s)