//@version=4 // RSI WMA EMA @NKStockTalk1 // Hilega-Milega System study(title="H-M system", overlay=false) src = input(close, type=input.source, title="Source") len = input(9, minval=1, title="RSI") up = rma(max(change(src), 0), len) down = rma(-min(change(src), 0), len) rsi = down == 0 ? 100 : up == 0 ? 0 : 100 - (100 / (1 + up / down)) wmaLength =...