BIST:ESCOM   ESCORT TEKNOLOJI
//@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 > sma)
barcolor(bullish_divergence ? color.green : na, transp=80)
bgcolor(bullish_divergence ? color.green : na, transp=70)

hline(rsi_threshold, "RSI Eşik", color.red)

alertcondition(bullish_divergence, "Boğa ya dönecek hisse bulundu", "Boğa ya dönecek hisse bulundu")
免責聲明

這些資訊和出版物並不意味著也不構成TradingView提供或認可的金融、投資、交易或其他類型的意見或建議。請在使用條款閱讀更多資訊。