Ayuda con Ichimoku
- This topic has 3 replies, 3 voices, and was last updated 8 years ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
Forums › ProRealTime foro Español › Soporte ProScreener › Ayuda con Ichimoku
Buenas tardes,
He intentado sin éxito intentar realitzar un screener que me muestre de señal en qué valores la linea KIJUN atraviesa la nube KUMO.
Agradecería si laguien lo supiese realizar y compartir o por el contrario si no es posible programarlo y así dejar de intentarlo.
Muchas gracias.
P.D. Se echaba en falta una web como esta!!!
Añade las medias como un indicador nuevo y de esta forma puedes usarlos en los screeners.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
REM ICHIMOKU TENKAN-KIJUN REM MEDIAS TENKAN Y KIJUN REM p1 = variable tenkan, por defecto 7 (antigua 9) - COLOR ROSA REM p2= variable kijun, por defecto 22 (antigua 26) - COLOR ROJO /////////////////////////////////////////////////////////// REM Tenkan Upper1 = HIGHEST[p1](HIGH) Lower1 = LOWEST[p1](LOW) Tenkan = (Upper1 + Lower1) / 2 REM Kijun Upper2 = HIGHEST[p2](HIGH) Lower2 = LOWEST[p2](LOW) Kijun = (Upper2 + Lower2) / 2 RETURN Tenkan as "Tenkan-MediaCorta", Kijun as "Kijun-MediaLarga" |
Hola, sí que es posible.
Aquí está el código para que ProScreener que prueban un cruce entre Kijun y Kumo.
1 2 3 4 5 6 7 8 9 10 |
Tenkansen = (highest[9](high)+lowest[9](low))/2 Kijunsen = (highest[26](high)+lowest[26](low))/2 SSpanA = (tenkansen[26]+kijunsen[26])/2 SSpanB = (highest[52](high[26])+lowest[52](low[26]))/2 crossup = Kijunsen crosses over SSpanA and SSpanA>SSpanB crossdown = Kijunsen crosses under SSpanB and SSpanA<SSpanB SCREENER [crossup or crossdown] |
Gracias. Lo probaré!