PureBytes Links
Trading Reference Links
|
Hi Mohan
I think that you will need to add
SetBarsRequired(10000,10000);
to the start of the AFL. I seem to remember that there is a problem
with quick AFL enabled and some of these functions which require that
line to be added.
Stefan
--- In amibroker@xxxx, "mohan_yellayi" <mohan_yellayi@xxxx> wrote:
> The following 2 commands don't seem to be working in Ehlers.dll
> plugin. All others that are in the Ehlers.readme file are okay. Can
> Stefan or Stephane, please help.
>
> Thanks
>
> Mohan
>
> Triple Delay-line Canceller
> price = (H + L ) / 2;
>
> detrend = sbTDC(price);
>
> Plot( detrend,"TDC",4,1);
>
>
> and the next one is
>
> Optimum Elliptic Filter
>
> Plot(sbOptimumEllipticFilter(Close),"OEF",4,1);
> Plot(C,"Close",1,64);
|