| 
 PureBytes Links 
Trading Reference Links 
 | 
Chuck,
 
Yes...I supplied Alan with what he was asking for in his post...Not RSI()..
but rather Relative Strength comparison....similar to what is used by IBD...
I also rank the stocks per the RS% but that requires a bit more code.....A
quick Sort / ranking would be to click on the RS% header.
 
Anthony
 
-------Original Message-------
 
From: amibroker@xxxxxxxxxxxxxxx
Date: Friday, March 14, 2003 13:27:08
To: amibroker@xxxxxxxxxxxxxxx
Subject: RE: [amibroker] RSI (should probably be "RS")
 
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@xxxxxxxxxxxx]
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@xxxxxxxxxxxx]
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@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 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 the Yahoo! Terms of Service. 
 
Yahoo! Groups Sponsor
ADVERTISEMENT
 
 
 
 
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 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/ 
 |