[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: EasyLanguage to Metastock conversion



PureBytes Links

Trading Reference Links

Corey,
That's pretty nice... I think you got it about as
compact as it can be made in Metastock...
I think this one was a learning experience for a lot of us.
Jeff
p.s. did you try to code up the "modified optimal ellipic
filter" that is described in the same TASC article?


C.S. wrote:
>
>So, try:
>Value1:= ((H+L)/2) + 0.088*Ref(PREV,-5);
>Value2:=ROC(Value1,6,$) + 1.2*Ref(PREV,-5) - 0.7*Ref(PREV,-11);
>Ref(Value2,-12) - 2*Ref(Value2,-6) + Value2
>
>I used (H+L)/2 for prices since that is what Ehlers used on p.26. There
>isn't much change from using CLOSE, but it helps.
>I tried this on a test plot similar to TASC July 2000, p. 26 and it looks
>close in both freq and amplitude.
>