I’m trying to make an Ichimoku screener of the chikou (lagging span) crossing over the kumo (cloud). I’m having difficulties with the fact that what I’m looking for “is happening 26 periods ago.” So far I came up with this : 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 c1 = close[0] > SSpanA[26] c2 = close[0] > SSpanB[26] c3 = (close[0] < SSpanA[27]) or(close[0] < SSpanB[27]) screener[c1 and c2 and c3] I’m surprised as this only returns me 4 results on a NASDAQ screen… Does this screen look right to you ? Thank you.