On Ichimoku, the lagging span serves as confirmation, so I developed a screener (with the help of Vivien) which highlights the values of which the Chikou breaks the price, the SpanB or the Kijun. In order to also bring out the values which have a good Ichimoku indicator, I also associated the Chikou part with the current price which also breaks the SpanB or the Kijun.
Different criteria emerge:
- 10: the chikou breaks the price (the current price does not break any Ichimoku indicator)
- 20: the chikou breaks the Kijun (the current price does not break any Ichimoku indicator)
- 30: the chikou breaks the SpanB (the current price does not break any Ichimoku indicator)
- 100: the chikou breaks the course and the current price breaks the Kijun
- 150: the chikou breaks the course and the current price breaks the SpanB
- 200: the chikou breaks the Kijun and the current price breaks the Kijun
- 250: the chikou breaks the Kijun and the current price breaks the SpanB
- 300: the chikou breaks the SpanB and the current price breaks the Kijun
- 350: the chikou breaks the SpanB and the current price breaks the SpanB
All with a volume> 5000 and it is possible to extract only the values> MM200 (not listed in the screener below).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
CHIKOU CROISE PeriodoMedio=26 Chikou = Close Kijun = (highest[26](high)+lowest[26](low))/2 SpanB = (highest[52](high[26])+lowest[52](low[26]))/2 A = Chikou CROSSES OVER Close[PeriodoMedio] B = Chikou CROSSES OVER Kijun[PeriodoMedio] C = Chikou CROSSES OVER SpanB[PeriodoMedio] E = Close CROSSES OVER Kijun F = Close CROSSES OVER SpanB //A2 = close > average[200] x=0 if A and E then x=100 elsif A and F then x=150 elsif B and E then x=200 elsif B and F then x=250 elsif C and E then x=300 elsif C and F then x=350 elsif A then x=10 elsif B then x=20 elsif C then x=30 endif // ===== SCREENER ===== SCREENER [x>0 and volume > 5000] (x as "1=close, 2=k, 3=SSB, 00=K, 50=SSB") |
Share this
No information on this site is investment advice or a solicitation to buy or sell any financial instrument. Past performance is not indicative of future results. Trading may expose you to risk of loss greater than your deposits and is only suitable for experienced investors who have sufficient financial means to bear such risk.
ProRealTime ITF files and other attachments :PRC is also on YouTube, subscribe to our channel for exclusive content and tutorials
doesn t work
Ne fonctionne pas dommage ( voir ligne 1 )
Bjr, il faut mettre // sur la ligne 1.
//CHIKOU CROISE
Pas mal du tout !!
Bonjour, Comment fait on pour afficher la colonne de droite. J’ai la V11 je ne trouve pas. Merci
Pardon, j’ai trouver, désolé
the chikou is 26 periods behind current price, it’s not the close
Chikou is the current Close decayed 26 periods in the past of the chart.
yes, thanks for the correction. my post was complete rubbish