PureBytes Links
Trading Reference Links
|
Thank you Jason. I just copied the code to IB but it only shows the
stock (yellow) and not the Index (Red). Do I need to do something
special?
Alan
--- In amibroker@xxxxxxxxxxxxxxx, "Jayson" <jcasavant@xxxx> wrote:
> You could also simply subtract the results of plot one from plot 2
or divide
> one into the other. I like to see the two as the plot often tells
more than
> the raw number does.
>
> Jayson
> -----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/
|