Does anyone have AFL code for Relative Volatility
Index?
Here is the Metastock code for it:
100 * Mov( If(CLOSE > Ref(CLOSE,-1), Std(CLOSE,10), 0),14,E)
/
(Mov( If(CLOSE > Ref(CLOSE,-1), Std(CLOSE,10), 0),14,E)
+
Mov(If(CLOSE < Ref(CLOSE,-1), Std(CLOSE,10), 0),14,E))
TIA
Ara