PureBytes Links
Trading Reference Links
|
Hi Keith,
The following seems to work
SetBarsRequired(10000,10000);
price = (H + L) / 2;
sbInPhase = price;
sbQuadrature = price;
// sbHilbertT(price);
sbHilbertTransform(price);
Plot(sbInPhase,"InPhase",4,1);
Plot(sbQuadrature,"Quadrature",5,1);
By the way , Stephane , the optimum elliptical filter works now.
Thank you very much for your help. And Stefan and Stephane , really
appreciate your generosity and contributions.
Mohan
--- In amibroker@xxxx, "Keith Bennett" <kbennett@xxxx> wrote:
> Stefan,
>
> Thank you for sharing the plugin and for the help file.
> I have been able to use all the commands except the following
which
> produces an error when I try to run it in in IB:
>
> //Hilbert Transform - InPhase & Quadrature
>
> price = (H + L) / 2;
> sbInPhase = price;
> sbQuadrature = price;
> sbHilbertT(Price); // *** an ERROR is indicated at col 12.
> Plot(sbInPhase,"InPhase",4,1);
> Plot(sbQuadrature,"Quadrature",1,1);
>
> Can you see where the problem is?
>
> Keith (B)
>
>
>
>
>
> --- In amibroker@xxxx, "Keith Bennett" <kbennett@xxxx> wrote:
> > Stefan & Stephane
> >
> > Thank you so much. The txt file was exactly what I needed.
> >
> > Keith (B)
> >
> > --- In amibroker@xxxx, "Stephane Carrasset" <nenapacwanfr@xxxx>
> wrote:
> > > Ehlers is a plugin of stefan and I am stephane
> > > stefan has written a help file that I upload in third party
right
> > now
> > >
> > > for others help of others plugins I am updating them now
> > >
> > > stephane
> > >
> > > >
> > > > Is there a list of the available Ehlers commands anywhere?
> > > > Is there any user info other than the notes in
> > > HELP_Indicators.rtf ?
> > > >
> > > > Keith (B)
> > > >
> > > >
> > > > --- In amibroker@xxxx, "Stephane Carrasset"
<nenapacwanfr@xxxx>
> > > wrote:
> > > > > Hello,
> > > > > for Elliptic Filter
> > > > >
> > > > > Plot(sbOEF(Close),"OEF",4,1);// I am sorry I have changed
the
> > > name
> > > > > Plot(C,"Close",1,64);
> > > > >
> > > > > for Triple Delay-line Canceller, I don't find it in the
> > wokspace
> > > > > that stefan have sent to me
> > > > >
> > > > > stephane
> > > > >
> > > > >
> > > > > 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);
|