Here is one for you to try out.
.2*(price+(price-price[4]))+.8*filt[1]
It removes almost all of the lag that you would have with the standard 10xma which is .2*price+.8*filt[1]
I believe that this is a piece of Ehlers work, not sure where I picked it up.
What ever the lag is of the normal xma, that is where the Price[4] comes in, if it was a 3bar lag then you would have used price[3]
lag=1/.2-1
where .2 is the frequency
Hope I got all this right,
freq=2/period
period=2/freq
Hope this helps someone out there, if you have questions I will try to help but I am not a higher math kind of guy, barely made the GED thing you know.
wdbaker
.2*(price+(price-price[4]))+.8*filt[1]
It removes almost all of the lag that you would have with the standard 10xma which is .2*price+.8*filt[1]
I believe that this is a piece of Ehlers work, not sure where I picked it up.
What ever the lag is of the normal xma, that is where the Price[4] comes in, if it was a 3bar lag then you would have used price[3]
lag=1/.2-1
where .2 is the frequency
Hope I got all this right,
freq=2/period
period=2/freq
Hope this helps someone out there, if you have questions I will try to help but I am not a higher math kind of guy, barely made the GED thing you know.
wdbaker

