PureBytes Links
Trading Reference Links
|
Bart,
My experience hs bee like yours in trying to get the "Calculate
composites" to work. It should but just doesn't. You can get the
TRIN through Yahoo symbol is "^STI.N". Or, You can use a combination
of Composites that will develop both Advance/Decling issues or volume.
You can contact me by email should you be interested.
Incidently in the help files is the formula that can be used with
Quotes plus. This same formula should work with your own composites:
SYNTAX trin()
RETURNS ARRAY
FUNCTION Calculates TRIN (Arms Index) indicator.
NOTE: All built-in a/d indicators (AdLine/Trin) work only with
composites calculated inside AmiBroker
http://www.amibroker.com/newsletter/04-2000.html
If you are using QP2 database for example 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 );
EXAMPLE trin()
Dick H.
--- In amibroker@xxxxxxxxxxxxxxx, "bartvandyk" <bart@xxx> wrote:
>
> Hello,
>
> Need some help with the TRIN setup. I have followed the steps lined
> out in http://www.amibroker.com/newsletter/04-2000.html
> The only difference is I don't get anything in the URLs Profile Box.
>
> The TRIN shows up empty. Is there anything else I need to do??
>
> Sincerely,
>
> Bart.
>
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> 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/
|