Hola!
Se podría agregar a este código que únicamente me muestre acciones que hayan empezado a cotizar hace 5 años?
Timeframe(Weekly)
c1 = close < (highest[52](high) * 0.97)
MA = average[30,2](close)
c2 = (close >= (MA * 1.03)) AND (close <= (MA * 1.25))
Cond = c1 AND c2
SCREENER[Cond](Volume AS “Volume”)
Gracias!
Ahi esta:
Timeframe(Yearly)
Last5 = NOT (close[6] >= 0)
Timeframe(Weekly)
c1 = close < (highest[52](high) * 0.97)
MA = average[30,2](close)
c2 = (close >= (MA * 1.03)) AND (close <= (MA * 1.25))
Cond = c1 AND c2 AND Last5
SCREENER[Cond](Volume AS "Volume")