PureBytes Links
Trading Reference Links
|
Hello,
Amibroker's RELSTRENGTH is equivalent to IBD's RS Line, not IBD's
Relative Strength.
IBD's RS Line is the stock's price divided by the SandP 500 index.
It is on the IBD charts.
IBD's Relative Strength is a ranking over the market for price
appreciation over several time frames. It is listed in the stock
tables.
Currently, you can't rank the output of an exploration in Amibroker
directly. Here are two workarounds:
1. Export the data you want to rank to Excel, use the
Excel 'percentrank' function. Import the ranking data back into
Amibroker and access it via 'Foreign'.
2. Implement 2 consecutive Amibroker runs to calculate average and
standard deviation of your favorite technical indicator over the
basket of securities you want to rank.
(standard deviation uses average in the calcuation, hence the need
for two consecutive A2C runs).
Use ratio of the individual security's technical indicator to the
AddtoComposite's standard deviation as your ranking criteria.
Downhillspeedster
--- In amibroker@xxxxxxxxxxxxxxx, "Jayson" <jcasavant@xxxx> wrote:
> You may be right Chuck. If so he may wish to have a look at
relstrength...
>
> jayson
>
> RELSTRENGTH
> - comparative relative strength Referencing other symbol data
> (AFL 1.3)
>
>
> SYNTAX relstrength( "tickername", fixup = 1)
> RETURNS ARRAY
> FUNCTION Calculates relative strength of currently selected
security
> compared to "tickername" security. When you give an empty string as
> argument, a standard relative strength base security taken from
> Stock->Categories will be used.
> The last parameter - fixup - with the default value of 1 -
causes
> filling the holes in the data with previous values (behaviour
introduced in
> 3.90.3), if fixup is 0 - the holes are not fixed (the old, pre-
3.90.3
> behaviour)
> Note: you can still use Foreign/RelStrength in the old way:
> Foreign( "ticker", "field" ), RelStrength( "ticker" ) - then
the holes
> will be fixed.
> EXAMPLE relstrength( "^DJI" )
>
>
> Jayson
> -----Original Message-----
> From: Chuck Rademacher [mailto:chuck_rademacher@x...]
> Sent: Friday, March 14, 2003 1:29 PM
> 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@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.
>
>
> 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/
|