PureBytes Links
Trading Reference Links
|
Has anyone successfully created a table for the active ticker's
industry category? I cant make the VarSetText and VarGetText
functions work:(. Additionally my table is for one symbol only that
provides incorrect data regarding sector and industry assignments.
Most industries have more than stock;). Below is my first attempt at
using GFX functions.. Does anyone have any pointers?
////////////////////////////////////////////////////////////
Row = 1;
FilteredList = CategoryGetSymbols(
categoryIndustry , 60);
for( i = 0; ( sym = StrExtract( FilteredList , i ) ) != ""; i++ )
{
SetForeign(sym);
Compname=Name();
VarSetText("sym","Compname");
VarSet("QRS"+i,qrsrank);
VarSet("EpsRank"+i,epsrank);
PrintInCell( StrFormat("%g",VarGetText("sym" )), row, 0 );
PrintInCell( StrFormat("%g", VarGet("QRS"+i )), Row, 1 ) ;
PrintInCell( StrFormat("%g", VarGet("EpsRank"+i )), Row, 2 );
PrintInCell( SectorID(1), Row, 6);
PrintInCell( IndustryID(1), Row,7);
}
RestorePriceArrays();
------------------------------------
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/
|