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:
All with a volume> 5000 and it is possible to extract only the values> MM200 (not listed in the screener below).
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")