PureBytes Links
Trading Reference Links
|
Hi Chuck,
You're right. I made a mistake in the subject. It should say RS and
not RSI. Sorry.
Alan
--- In amibroker@xxxxxxxxxxxxxxx, "Chuck Rademacher"
<chuck_rademacher@x> wrote:
> I have a feeling that Alan was after "relative strength" (as used
by IBD) to
> compare the strength of one stock against an index as opposed
to "RSI" which
> is a completely different animal. If that's the case, Anthony's
reply
> probably contains the answer that Alan is seeking.
> -----Original Message-----
> From: Jayson [mailto:jcasavant@x...]
> Sent: Friday, March 14, 2003 1:14 PM
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: RE: [amibroker] RSI
>
>
> Alan,
> there are a number of methods to approach this.
>
> You could simply plot Your stocks RSI and use foreign to plot the
index
> RSI in the same pane...
>
> pds=Param("Periods",14,5,21,1);
> symbol="!NDX"; // place your index here
>
> Plot(RSI(pds),"Stock",colorYellow,1);
> Plot(RSIa(Foreign(symbol,"C"),pds),"Index",colorRed,1);
>
> A different way to go would be to create a composite of the
universe of
> your choice and use that composite as your foreign call.
>
> Jayson
> -----Original Message-----
> From: Alan Nouray [mailto:alann@x...]
> Sent: Friday, March 14, 2003 12:51 PM
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: [amibroker] RSI
>
>
> Has anybody developed a formula that calculates and shows the RS
of a
> certain stock compare to list of stocks (such as N100). Something
> similar to RS in Investor Business Daily.
>
> Alan
>
>
>
> 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
>
> Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service.
>
> Yahoo! Groups Sponsor
> ADVERTISEMENT
>
>
>
>
> 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
>
> Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service.
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
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|