Çok eski bir web tarayıcısı kullanıyorsunuz. Bu veya diğer siteleri görüntülemekte sorunlar yaşayabilirsiniz.. Tarayıcınızı güncellemeli veya alternatif bir tarayıcı kullanmalısınız.
Hull Hareketli Ortalama Nedir
The Hull Moving Average solves the age old dilemma of making a moving average more responsive to current price activity whilst maintaining curve smoothness. In fact the HMA almost eliminates lag altogether and manages to improve smoothing at the same time. To...
This indicator requires 3 sub calculations and then the totalling of all3to get the final indicator: This is the basic calculation:
Take the closing prices of your instrument 34 days ago - 26 days ago(inclusive), multiply each daily value by 0.01 and write each value down.
Then take the closing...
n his article "Elastic Moving Average" in this issue, Christian Fries introduces the eVWMA indicator. To recreate this indicator in MetaStock, select the Indicator Builder from the Tools menu. Then click New and enter the following formula:
eVWMA
n := Input("Enter the number of shares...
To smooth it out further, one may apply it twice with smaller period for the second. But again, you cannot make the lag zero!
Almost Zero Lag Moving Average
Period:= Input("What Period",1,250,10);
EMA1:= Mov(P,Period,E);
EMA2:= Mov(EMA1,Period,E);
Difference:= EMA1 - EMA2;
ZeroLagEMA:=...