Merhabalar,
Matriks IQ için Smoothed RSI indikatörünü bulamadım. TradingView'da kullanılan varsayılan Smoothed RSI kodları şu şekilde:
study(title="Smoothed RSI")
Length = input(10, minval=1)
xValue = (close + 2 * close[1] + 2 * close[2] + close[3] ) / 6
CU23 = sum(iff(xValue > xValue[1], xValue - xValue[1], 0), Length)
CD23 = sum(iff(xValue < xValue[1], xValue[1] - xValue, 0), Length)
nRes = iff(CU23 + CD23 != 0, CU23/(CU23 + CD23), 0)
plot(nRes, color=blue, title="Smoothed RSI")
Bunu Matriks IQ için hazırlayabilmemiz mümkün mü?