//@version=4 study("Boğa Ya Dönecek Hisseler", shorttitle="BYDH", overlay=true) length = input(14, title="RSI Uzunluk") rsi_threshold = input(30, title="RSI Eşik Değeri") sma_length = input(50, title="Basit Hareketli Ortalama Uzunluk") rsi = rsi(close, length) sma = sma(close, sma_length) bullish_divergence = na(rsi ) ? na : (rsi < sma and rsi >...