Manfred![]() Veteran ![]() ![]() Posts: 210 Joined: 4/2/2006 Location: South Africa ![]() | In my "shower thought of the day" I wondered why I was smoothing an already smoothed input in the earlier QQE2RSX indicator. All I could see it doing was introducing signal lag, hence I removed it in the version below QQE3RSX. OT code progression as follows: 1. QQE2 - Original QQE: #Param "RSIperiod",14,2,100 'default 14 RSI period #Param "SF",5,1,50 'default 5 RSI smoothing factor MyRsi = RSI(Close,RSIPeriod) RsiMa = EMA(MyRsi,SF) 2. QQE2RSX - QQE with JSX (double smoothed): #Param "RSIperiod",14,2,100 'default 14 RSI period #Param "SF",5,1,50 'default 5 RSI smoothing factor MyRsi = JurikRSX(Close,RSIPeriod) RsiMa = EMA(MyRsi,SF) 3. QQE3RSX - QQE with JSX smoothed with JSX only: #Param "RSIperiod",14,2,100 'default 14 RSI period RsiMa = JurikRSX(Close,RSIPeriod) ![]() ![]() |