There is an Elliptic Filter posted in the download section. In the accompanying documents there is an explanation of the filter. The author(Ehlers) talks of an oscillator. I'll provide the code he gives but beyond that, I don't know what to do to get the two lines he uses.
Smooth = .13785*Price + .0007*Price[1] + .13785*Price[2] + 1.2103*Smooth[1] - .4867*Smooth[2];
Inputs: Price((H+L)/2);
Vars: Detrend(0);
Value1 = Price + .088*Value1[6];
Value2 = Value1 – Value1[6] + 1.2*Value2[6] - .7*Value2[12];
Detrend = Value2[12] – 2*Value2[6] + Value2;
Plot1(Detrend, “Detrend”);
Smooth = .13785*(2*Price – Price[1]) + .0007*(2*Price[1] – Price[2]) + .13785*(2*Price[2] –Price[3]) + 1.2103*Smooth[1] - .4867*Smooth[2]
The first is the Elliptic filter. The second is the Detrend formula and the third is the Modified Elliptic filter.

Comment