PureBytes Links
Trading Reference Links
|
This is the wrong code for the B&Q indicators. I would not attempt to
trade with this code. It will give you bad indications.
The code in the newsletter has been verified by several people,
tested and re-tested for accuracy. This code has not been tested and
does not give good results. $99 is less than the commission on a few
trades, and a whole lot less than the losses from one bad trade.
Rather than trying to find a way to get everything for free, just buy
the newsletter and save yourself a ton of grief.
At least you'll learn how to code, find some interesting indicators
that are actually effective, learn how to do explorations the right
way, work the systems tester and a lot of other stuff you need to
know.
How expensive is the "free" learning curve anyway.
--- In equismetastock@xxxxxxxxxxxxxxx, "Hani" <elmagd2000@xxxx> wrote:
> Alberto and Roy,
> I have contacted Equis regarding this issue and they sent me the
corrected
> ones plus promised to amend web page. Here they are:
>
> B Indicator:
> --------------------------
> m:=Input("% Scalar trend period",1,25,4);
> n:=Input("% Scalar noise period",1,500,250);
> cf:=Input("% Scalar correction factor",1,250,2);
> p1:=Input("First moving average periods",1,200,7);
> p2:=Input("Second moving average periods",1,200,15);
> rev:=Mov(C,p1,E)-Mov(C,p2,E);
> pds:=If(rev>0,1,-1);
> dc:=ROC(C,1,$);
> cpc:=If(pds<>Ref(pds,-1),0,(dc*pds)+PREV);
> trend:=If(pds<>Ref(pds,-1),0,(cpc*(1/m))+(PREV*(1-(1/m))));
> dt:=cpc-trend;
> noise:=cf*Sqrt(Mov(dt*dt,n,S));
> temp:=If(Abs(trend)+Abs(noise)=0,1,Abs(trend)+Abs(noise));
> (Abs(trend)/temp)*100;
> ------------------------------
> Q Indicator
> ------------------------------
> m:=Input("% Scalar trend period",1,25,4);
> n:=Input("% Scalar noise period",1,500,250);
> cf:=Input("% Scalar correction factor",1,250,2);
> p1:=Input("First moving average periods",1,200,7);
> p2:=Input("Second moving average periods",1,200,15);
> rev:=Mov(C,p1,E)-Mov(C,p2,E);
> pds:=If(rev>0,1,-1);
> dc:=ROC(C,1,$);
> cpc:=If(pds<>Ref(pds,-1),0,(dc*pds)+PREV);
> trend:=If(pds<>Ref(pds,-1),0,(cpc*(1/m))+(PREV*(1-(1/m))));
> dt:=cpc-trend;
> noise:=cf*Sqrt(Mov(dt*dt,n,S));
> trend/noise
> --------------------------------
>
> Hoping to be of use.
> Hani
>
>
> ----- Original Message -----
> From: "Roy Larsen" <rlarsen@xxxx>
> To: <equismetastock@xxxxxxxxxxxxxxx>
> Sent: Wednesday, November 24, 2004 1:39 PM
> Subject: Re: [EquisMetaStock Group] Q&B indicator
>
>
> >
> > Hi Alberto
> >
> >
> > The Q and B indicators are public domain but have errors as
published
> > on the Equis website.
> >
> > http://www.equis.com/Support/TASCArticles/ViewArticle.aspx?Id=61
> >
> >
> > Kind regards
> >
> > Roy Larsen
> > www.metastocktips.co.nz
> > Free formulas and MS links
> >
> >
> >
> > ----- Original Message -----
> > From: "alberto_sfolcini" <no_reply@xxxxxxxxxxxxxxx>
> > To: <equismetastock@xxxxxxxxxxxxxxx>
> > Sent: Wednesday, November 24, 2004 10:54 PM
> > Subject: [EquisMetaStock Group] Q&B indicator
> >
> >
> > >
> > >
> > >
> > > Hi there,
> > >
> > > I saw some samples in file section and read some message about
them,
> > > but I cant understood if the code for Q&B indicator is public.
> > > If is it public could explain where I can found it?
> > > I'll check public and free version of November Tip&Tricks but I
did
> > > not find it, maybe I had some mistakes :-)
> > > Or, if it is not public, how it works, which are the basis ?
> > >
> > > :)
> > > Thank you so much,
> > > Alberto
> >
> >
> >
> >
> >
> >
> > Yahoo! Groups Links
> >
> >
> >
> >
> >
> >
> >
> >
------------------------ Yahoo! Groups Sponsor --------------------~-->
Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar.
Now with Pop-Up Blocker. Get it for free!
http://us.click.yahoo.com/L5YrjA/eSIIAA/yQLSAA/BefplB/TM
--------------------------------------------------------------------~->
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|