RSI of MACD code: Var=MACD(); Up=IIf(Var>Ref(Var,-1),abs(Var-Ref(Var,-1)),0); Dn=IIf(Var<Ref(Var,-1),abs(Var-Ref(Var,-1)),0); Ut=Wilders(Up,Pds); Dt=Wilders(Dn,Pds); RSIt=100*(Ut/(Ut+Dt));
--- In [email protected], "bwb1940" <bwb1...@...> wrote: > > I'm having trouble creating an indicator on an indicator for ATR only. > Looking to create the RSI of ATR. ALL OTHER DRAG AND DROPS are working. For > instance, MA on an RSI, no problem. Have I clicked something ATR specific > that is only allowing the indicator to point at price? >
