Är det ngn som har tagit fram formel för Adaptive Moving Average
Adaptive Moving Average enl följande
Direction = Price - price(n) ; where n = AMA Period
Volatility = Sum(abs(price - price[1], n)
Effeciency Ratio (ER) = Direction / Volatility
Fast Smoothing Constant (FastC) = 2/(p + 1) ; where p = FSC Period =( p=2 ger 0,6667)
Slow Smoothing Constant (SlowC) = 2/(q + 1) ; where q = FSC Period=(q=20 ger 0,0645)
Scaled Smoothing Constant (SSC) = ER(FastC - SlowC) + SlowC
c = SSC*SSC
AMA = AMA[1] + c(price - AMA[1])
Kunde vara intressant att pröva i dessa svängiga tider.
Adaptive Moving Average enl följande
Direction = Price - price(n) ; where n = AMA Period
Volatility = Sum(abs(price - price[1], n)
Effeciency Ratio (ER) = Direction / Volatility
Fast Smoothing Constant (FastC) = 2/(p + 1) ; where p = FSC Period =( p=2 ger 0,6667)
Slow Smoothing Constant (SlowC) = 2/(q + 1) ; where q = FSC Period=(q=20 ger 0,0645)
Scaled Smoothing Constant (SSC) = ER(FastC - SlowC) + SlowC
c = SSC*SSC
AMA = AMA[1] + c(price - AMA[1])
Kunde vara intressant att pröva i dessa svängiga tider.
Comment