Hola,
Gracias a la comunidad, he creado un screener que detecta valores que llevan entre 10 y 20 sessiones acumulando, hasta que finalmente rompen arriba.
N = 10
M = 10
MIMAX = highest[M](high[N])
CIERRE1 = close[1]<MIMAX
IF CIERRE1 THEN
Con1=1
ELSE
Con1=0
ENDIF
con2= close >= highest[19](high[1])
Screener[con1 AND con2 ]
Es genial!!
Es possible realitzar un indicador que nos indique una vela verde en grafico cuando detecte estas acumulaciones???
Siempre use el botón “Insert PRT Code” cuando incluya e inserte un código en sus mensajes para que sea más fácil de leer para otros.
Gracias 🙂
aquí está (no lo he probado):
N = 10
M = 10
MIMAX = highest[M](high[N])
CIERRE1 = close[1]<MIMAX
IF CIERRE1 THEN
Con1=1
ELSE
Con1=0
ENDIF
con2= close >= highest[19](high[1])
If con1 AND con2 and close > open then
DrawArrowUP(BarIndex,low - range) coloured(0,255,0,255)
Endif
Return
Muchas Gracias Roberto.
Funciona a la perfeccion.
Es muy amable!