PureBytes Links
Trading Reference Links
|
Message 24417 and others in the amibroker YahooGroup show how to create all
sector indices automatically.
Below is a sample of the code,... you may want to look at the other posts on
the topic for more info.
herman
From: "Tomasz Janeczko" <amibroker@xxxxxx>
Date: Fri Sep 13, 2002 4:30 pm
Subject: Re: [amibroker] composite indexes
Hello,
You can also write universal formula:
inc = 1;
sym = "~" + SectorID(1);
AddToComposite( inc * L, sym,"L");
AddToComposite( inc * O, sym,"o");
AddToComposite( inc * H, sym,"h");
AddToComposite( inc * C, sym,"c");
AddToComposite( inc * V, sym, "V");
that calculates individual composites for each sector automatically;
Best regards,
Tomasz Janeczko
amibroker.com
-----Original Message-----
From: Anthony Faragasso [mailto:ajf1111@xxxxxxxx]
Sent: Tuesday, September 23, 2003 9:33 PM
To: amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] Sector and industry analysis
Could someone let me know what Sector is outperforming the others and What
industry is outperforming the others.....I am trying to confirm my findings
for both in Amibroker.
Also, what is your source....AB, or some other site / platform....
TIA
Anthony
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.520 / Virus Database: 318 - Release Date: 9/18/2003
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/
------------------------ Yahoo! Groups Sponsor ---------------------~-->
ReplayTV: Control live television
Special Sale: 50% off ReplayTV
CNet Ranked #1 over Tivo!
http://us.click.yahoo.com/aUMW7B/A6qGAA/ySSFAA/GHeqlB/TM
---------------------------------------------------------------------~->
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/
|