Kaufman's Adaptive RSI
MetaStock formula derived from calculations in Trading Systems and Methods, Third
Edition, by Perry J. Kaufman.This formula adapts the standard RSI to a smoothing
constant.
==========================
Period := Input("Period",1,10000,20);
sc := Abs(RSI(Period)/100 - .5)*2;
If(Cum(1) <= Period, CLOSE,
PREV + sc*(CLOSE - PREV))
=========================
|