This screener displays all the current bullish trends over the selected period of time. I use Ichimoku to determine if the trend is bullish. Note: this screener waits until the cloud is bullish, it will not go up a trend supported by a bearish cloud (Senkou Span A lower than Senkou Span B) in order to eliminate the beginning of trends or we risk to be still in a neutral trend. Therefore, there must have been a twist with a bullish cloud in the future to support the start of a trend. I added a ranking criterion that indicates the proximity of the Kijunsen to the closing price.
Tenkan = (highest[9](high)+lowest[9](low))/2
Kijun = (highest[26](high)+lowest[26](low))/2
TenkansenFut = (highest[8](high)+lowest[8](low))/2
KijunsenFut = (highest[25](high)+lowest[25](low))/2
SSpanA = (Tenkan[26]+Kijun[26])/2
SSpanB = (highest[52](high[26])+lowest[52](low[26]))/2
SenkouSpanAFuture = (tenkansenfut+kijunsenfut)/2
SenkouSpanBFuture = (highest[51](high)+lowest[51](low))/2
Chikou = close
ABOVEKUMO=close > SSpanA and close > SSpanB
VALIDATECHIKOU=chikou > SSpanA[26] and Chikou > SSpanB[26]
KUMOBULLISH=SenkouSpanAFuture>SenkouSpanBFuture
KIJUNGOINGUP=Kijun>Kijun[1]
KIJUNPROXIMITY=(KIjun-close)/close
screener[ABOVEKUMO and KUMOBULLISH and VALIDATECHIKOU AND KIJUNGOINGUP](KIJUNPROXIMITY)