PureBytes Links
Trading Reference Links
|
In attempting to write an indicator to match C. Brown's RSI derivative
oscillator the formula builder stops at the comma after the ATR(14) and says
this variable must contain only constant data.
Brown's formula says to add 2.3 times the average true range of up RSI
14,6,S closes, and then runs the triple smoothing.
Mov((RSI(14)),6,S) + 2.3*ATR(If(INDICATOR > PREVIOUS ,
mov((RSI(14)),((RSI(14))),(RSI(14))),15)))
For some reason I can't figure out how to express this correctly.
|