PureBytes Links
Trading Reference Links
|
Hello,
Built-in TRIN works by default only with composites calculated inside AmiBroker
http://www.amibroker.com/newsletter/04-2000.html
If you are using QP2 database however you should use QP2's own
symbols for advances/declines.
!NY-A, !NY-D, !NY-AV, !NY-DV
THe formula for NYSE TRIN using QP2 database is:
ArmsIndex = ( Foreign("!NY-A", "C") / Foreign("!NY-D", "C") ) / ( Foreign("!NY-AV", "C") / Foreign("!NY-DV","C" ) );
Plot( ArmsIndex, "TRIN", colorRed );
Best regards,
Tomasz Janeczko
amibroker.com
----- Original Message -----
From: <ewn87544@xxxxxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Tuesday, February 25, 2003 7:35 PM
Subject: [amibroker] Trin
> I am evaluating Amibroker 4.2 for purchasing. It seems that the
> learning curve could be a long road.
> My question is this. I am using QP2 quotes and can't figure out how
> the TRIN indicator would work as it says it is disable in the trial
> version.
> How does it know what and where the Adv and Dec Issue and Volume
> symbols are or where they are located. Is there a place to set this
> up? How does this work for other custom indicators that use this data?
> Thanks
> Ernie
>
>
> 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/
>
>
>
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/
|