Ç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.
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...
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:=...
At 11:53 AM 1/5/98 -0800, you wrote:
Is it possible to calculate the MODIFIED moving average (Perry Kaufman) within Metastock? I am told it can be done with TradeStation and CQG..
Here is the formula:-
MAV(t) = MAV(t-1) + [P(t)-MAV(t-1)]/n
Where:
MAV(t) is the current modified moving average...