This simple screener helps to detect a double low’s on prices confirmed by a double low’s on RSI. It’s not spot on and you still need to filter the results one by one but I found it really helpful so far to narrow down the results. It can be modified to detect also double high’s. I like to see double low’s in a 30-day period but this period can be customised.
Blue skies.
// esempio di codice di screener
corto=lowest[5](low)>lowest[10](low[20])
rs=lowest[5](rsi[14](close))>lowest[10](rsi[14](close[20]))
rsold=lowest[10](rsi[14](close[20]))<30
z=lowest[5](rsi[14](close))-lowest[10](rsi[14](close[20]))
SCREENER [corto and rs and rsold] (z as "Delta RSI")