PureBytes Links
Trading Reference Links
|
Hi Steve,
No, nothing in Amibroker tells directly us the components of an index
symbol, like Yahoo's ^NDX. Indirectly, you could use the AddToComposite
function on the N100 components and produce your own surrogate for ^NDX.
RE: the Nasdqaq TRIN: Quotes Plus, my data supplier, pre-calculates and
produces data for the !-prefixed symbols I use here for my Nasdaq TRIN
indicator:
Tnq=( Foreign("!NQ-A","C") / Foreign( "!NQ-D", "C") )/ (
Foreign("!NQ-AV","C")/ Foreign( "!NQ-DV", "C") );
Plot(Tnq,"NAZTRIN",colorBlack,styleLine|styleOwnScale);
Plot(MA(Tnq,10),"MA(10)",colorRed,styleLine|styleOwnScale);
Plot(.5,"",1,1);
Plot(-.5,"",1,1);
GraphXSpace=3;
HTH,
-john
----- Original Message -----
From: "edwards_ca1" <edwards_ca1@xxxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Monday, August 02, 2004 6:09 PM
Subject: [amibroker] AmiBroker, ^NDX, and TRIN
Is there something in AmiBroker that tells it that
^NDX consists of 100 Nasdaq stocks ?
Does AmiBroker know specifically which 100 stocks
belong to ^NDX ?
I am wondering, because, otherwise how would AmiBroker know
how to calculate Trin for Nasdaq stocks by using:
TrinIndex =
( AdvIssues() / DecIssues() ) / ( AdvVolume() / DecVolume() );
Is it true that, for example, AdvIssues()
is calculated based on a group of stocks,
which is based on a particular Index,
which is based on the market for the stock being viewed ?
Thanks,
Steve
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at:
http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Links
------------------------ Yahoo! Groups Sponsor --------------------~-->
Yahoo! Domains - Claim yours for only $14.70
http://us.click.yahoo.com/Z1wmxD/DREIAA/yQLSAA/GHeqlB/TM
--------------------------------------------------------------------~->
Check AmiBroker web page at:
http://www.amibroker.com/
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/
|