İNDİKATÖR KODU
study("Chopiness and RSI index", overlay=false)
length = input(14, title="Length")
l1 = input(61.8, title="Extreme Chop")
l3 = input(38.2, title="Trending")
str = sum(tr,length)
ltl = lowest(low <= close[1] ? low : close[1],length)
hth = highest(high >= close[1] ? high : close[1],length)
height = hth - ltl
chop = 100 * (log10(str / height) / log10(length))
plot(chop, title='chopiness', color=red, linewidth=2), plot(rsi(close, 14),title='RSI', color=green, linewidth=2)
hli1 = hline(l1)
hli3 = hline(l3)
fill(hli1,hli3,#C8D974,80)
O OLACAK İNDİKATÖRÜN İSE TARAMASINI YAPMAK İSTİYORUM. CHOPPLİNES GÖSTERGENİN VE RSI GÖSTERGENİN BİRBİRİNDEN EN UZAK OLDUĞU TARAMAYI YAPMAK İSTİYORUM