Ichimoku - Lagging span and price cross Kijun or SpanB

Category: Screeners By: Boursicoteur17 Created: September 18, 2020, 9:12 AM
September 18, 2020, 9:12 AM
Screeners
9 Comments

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).

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")

Download
Filename: ichimoku-cross-kijun-or-spanb.itf
Downloads: 514
Boursicoteur17 New
I usually let my code do the talking, which explains why my bio is as empty as a newly created file. Bio to be initialized...
Author’s Profile

Comments

Logo Logo
Loading...