Hola a todos,
Me gustaría programar un screener que cumpliese la siguientes características (adjunto fotos):
- Vela martillo en SEMANAL
- Que el cierre de la vela esté por encima de la media 200 en Semanal
Muchas gracias por vuestra ayuda.
Ahi esta:
Sma200 = average[200,0](close)
Body = abs(open - close) <= (range * 0.30) //the BODY must be < 30% of the range
UpperWick = (high - max(open,close)) <= (range * 0.10) //the UPPER wick must be < 10% of the range
Hammer = Body AND UpperWick AND (close > Sma200)
SCREENER[Hammer]