Trabajo finalizado
Tarea técnica
Hi,
I need to:
1. Add the following condition to an existing code:
In the Daily Timeframe add Condition 5 to the EA:
Condition 5 would be the following:
Dia100 = Close[101]
Dia1= Close[1]
Rango = Dia1-Dia100
Porcentaje = (Rango/Dia100)*100
Promedio = Average[1000](Porcentaje)
Condition2 = Porcentaje>Promedio
Therefore, once the 5 conditions are met, a long position would be opened.
2. Develop an indicator for the following:
Dia100 = Close[101]
Dia1= Close[1]
Rango = Dia1-Dia100
Porcentaje = (Rango/Dia100)*100
Promedio = Average[1000](Porcentaje)
I need the indicator to show both the "promedio" and the "porcentaje" in a separate window.
3. Develop an indicator for the folowing:
Aver = (Average[260]((Range/Close)))
Sumperiod = Average[14]((Range/Close))
I need the indicator to show when Sumperiod>Aver and when Sumperiod<Aver
I will need the source code