PureBytes Links
Trading Reference Links
|
Dingo, I am un aware of these ! I tried to search the yahoo groups
but after trying to view the second page of results I get some kind
of error.
Thanks
--- In amibroker@xxxxxxxxxxxxxxx, "dingo" <dingo@xxxx> wrote:
> Since you made no mention of searching the archives, perhaps you
are unaware
> that the biggest help, IMHO, for those new to AB are the archives
of the
> Yahoo boards. They are in searchable help file format and can be
located
> here:
>
> http://www.amibroker.com/listarchive.html
>
> d
>
>
> _____
>
> From: mickeyamelinckx [mailto:mickeyA@x...]
> Sent: Sunday, February 29, 2004 11:40 AM
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: [amibroker] Re: RS code
>
>
> Sorry but donīt know why this message got posted 2 times and I
> checked AB file section and newsletter and found nothing on this
> part, only a fund ranking system.
>
> Thanks Herman !!!
> I see it named QRS and looking at the date ranges it looks much
like
> what QP uses in his QRS calculation, no ?
>
> Does this mean that the flaw of QRS is also in there. By this I
mean
> the somethimes peak swings you can seen in QRS.
> Thank
>
> --- In amibroker@xxxxxxxxxxxxxxx, "Herman van den Bergen"
> <psytek@xxxx> wrote:
> > Modify to your needs:
> >
> > //Calculating QRS
> >
> > Buy=Sell=Short=Cover=0;
> >
> > Filter=Status("LastBarInTest");
> >
> > SetOption("NoDefaultColumns",True);
> >
> > b=BarCount-1; p=62; i=0;
> >
> > T1=i++*(P+1);
> >
> > T2=i*P+i-1;
> >
> > T3=i++*(p+1);
> >
> > T4=i*p+i-1;
> >
> > T5=i++*(p+1);
> >
> > T6=i*p+i-1;
> >
> > T7=i++*(p+1);
> >
> > T8=i*p+i-1;
> >
> >
> > Price=C;
> >
> > Q1 = Price[b-T1]/Price[b-T2] + Price[b-T3]/Price[b-T4] +
> > Price[b-T5]/Price[b-T6]+Price[b-T7]/Price[b-T8];
> >
> > AddColumn(Q1,"QRSLinear",1.3);
> >
> >
> >
> >
> > Price=C;
> >
> > QRS=0;
> >
> > b=BarCount-1;
> >
> > BarsInRange = 62; // 0-62
> >
> > NumberRanges = 3; // 0-3
> >
> > for(i=0;i<=NumberRanges;i++)
> >
> > {
> >
> > Ta = i*(P+1); // Latest Range limit
> >
> > Tb = (i+1)*P+i; // Earlier Range limit
> >
> > QRS = QRS + Price[b-Ta]/Price[b-Tb];
> >
> > }
> >
> >
> > AddColumn(QRS,"QRSLoop",1.3);
> >
> >
> > NumberStocks=0;
> >
> > N100WL = 0;
> >
> >
> > function QRSrocNum( Price )
> >
> > {
> >
> > b=BarCount-1;
> >
> > ROCrankNum = (
> >
> > Price[b ]/price[b- 62]+
> >
> > Price[b- 63]/Price[b-125]+
> >
> > Price[b-126]/Price[b-188]+
> >
> > Price[b-189]/Price[b-251]);
> >
> > return ROCrankNum;
> >
> > }
> >
> >
> > Tx=QRSrocNum( Price );
> >
> > AddColumn(Tx,"QRSfunction",1.3);
> >
> >
> > ------------------------------------------------------------------
--
> --------
> > ----
> >
> >
> > // QP QRS Calculations
> >
> > Buy=Sell=Short=Cover=0;
> >
> > Filter=Status("LastBarInTest") AND BarCount-1 > 252;
> >
> > SetOption("NoDefaultColumns",False);
> >
> > Price = Open;
> >
> >
> > // using numbers (faster)
> >
> > b=BarCount-1;
> >
> > RankNum = (Price[b]/price[b-62]*2+
> >
> > Price[b-63]/Price[b-125]+
> >
> > Price[b-126]/Price[b-188]+
> >
> > Price[b-189]/Price[b-251])/5;
> >
> >
> > // using arrays (slower)
> >
> > RankArray = Price/Ref(Price,-62)*0.4+
> >
> > Ref(Price,-63)/Ref(Price,-125)*0.2+
> >
> > Ref(Price,-126)/Ref(Price,-188)*0.2+
> >
> > Ref(Price,-189)/Ref(Price,-251)*0.2;
> >
> >
> > AddColumn(RankNum,"RankNum",1.2);
> >
> > AddColumn(RankArray,"RankArray",1.2);
> >
> >
> > ------------------------------------------------------------------
--
> --------
> > --
> >
> >
> >
> > -----Original Message-----
> > From: mickeyamelinckx [mailto:mickeyA@x...]
> > Sent: Saturday, February 28, 2004 7:39 PM
> > To: amibroker@xxxxxxxxxxxxxxx
> > Subject: [amibroker] RS code
> >
> >
> > I though I saw some RS code available for AB but can't seem to
> find
> > it anymore. You know and RS like IBD's RS.
> > Has enyone a scan like this to start from ?
> >
> >
> >
> > Send BUG REPORTS to bugs@xxxx
> > Send SUGGESTIONS to suggest@xxxx
> > -----------------------------------------
> > Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
> > (Web page: http://groups.yahoo.com/group/amiquote/messages/)
> > --------------------------------------------
> > Check group FAQ at:
> > http://groups.yahoo.com/group/amibroker/files/groupfaq.html
> >
> >
> >
> > ------------------------------------------------------------------
--
> --------
> > --
> > Yahoo! Groups Links
> >
> > a.. To visit your group on the web, go to:
> > http://groups.yahoo.com/group/amibroker/
> >
> > b.. To unsubscribe from this group, send an email to:
> > amibroker-unsubscribe@xxxxxxxxxxxxxxx
> >
> > c.. Your use of Yahoo! Groups is subject to the Yahoo! Terms
of
> Service.
>
>
>
> Send BUG REPORTS to bugs@xxxx
> Send SUGGESTIONS to suggest@xxxx
> -----------------------------------------
> Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
> (Web page: http://groups.yahoo.com/group/amiquote/messages/)
> --------------------------------------------
> Check group FAQ at:
> http://groups.yahoo.com/group/amibroker/files/groupfaq.html
>
>
>
> Yahoo! Groups Sponsor
>
> ADVERTISEMENT
>
>
>
>
<http://rd.yahoo.com/SIG=12c1imrlf/M=274551.4550177.5761904.1261774/D=
egroup
>
web/S=1705632198:HM/EXP=1078159198/A=2019528/R=2/SIG=141jru11m/*http:/
/ad.do
> ubleclick.net/jump/N3349.yahoo1/B1282054.27;abr=!ie4;abr=!
ie5;sz=300x250;cod
> e=18634;dcopt=rcl;ord=1078072798612814?> Click HereClick Here
>
> <http://us.adserver.yahoo.com/l?
M=274551.4550177.5761904.1261774/D=egroupweb
> /S=:HM/A=2019528/rand=161345492>
>
>
> _____
>
> Yahoo! Groups Links
>
>
> * To visit your group on the web, go to:
> http://groups.yahoo.com/group/amibroker/
>
>
> * To unsubscribe from this group, send an email to:
> amibroker-unsubscribe@xxxxxxxxxxxxxxx
> <mailto:amibroker-unsubscribe@xxxxxxxxxxxxxxx?subject=Unsubscribe>
>
>
> * Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service
> <http://docs.yahoo.com/info/terms/> .
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|