//@version=5 indicator("Trio Combined Signal By{GoX}", overlay=true) rsiLength = input.int(14, title="RSI Length") rsiSource = input.source(close, title="RSI Source") rsiValue = ta.rsi(rsiSource, rsiLength) rsiSignal = ta.sma(rsiValue, 9) // RSI-based moving average n1 = input.int(10, title="WT Channel Length") n2 = input.int(21, title="WT Average Length") ap =...