PureBytes Links
Trading Reference Links
|
--- johngalt0714 <johngalt0714@xxxxxxxxx> wrote:
> Here's some simple code for Telechart users who may want to plot
> relative strength versus the industry (sector) and subindustry
> (industry) composites in the same chart pane. This assumes that you
> have the relative strength base defined for each Telechart subindustry
> (Amibroker industry) in the Amibroker categories dialog and that the
> higher-level category (market and group) bases are blank.
>
> If anyone has an idea how to define these bases without requiring that
> the higher level bases are blank, it would make the code a bit more
> versatile.
>
Here is a different approach. Produce a snapshot of some
data fields of Telechart then use a plugin to read the
fields required. I can release the former (probably need
Worden permission first) and the plugin to those interested.
I have attached an example output using yahoo.
Here is what the afl(modified version of what you posted)
looks like:
if ((tmp = MCgetdata("IntGrp", "", 0))>0) {
_N(s_tc_industry = StrFormat("MG%03g", tmp));
if ((tmp = MCgetdata("SubIntGrp", "", 0))>0) {
_N(s_tc_subindustry = StrFormat("MG%03g", tmp));
IndustryBase = s_tc_industry;
Plot(Prec(RelStrength (IndustryBase),2),
" Industry: " + IndustryID(1) +
" (" + IndustryBase + ")",
colorBlack, styleDots|styleThick);
SectorBase = s_tc_subindustry;
Plot(Prec(RelStrength (SectorBase),2),
" Sector: " + SectorID(1) +
" (" + SectorBase + ")",
colorGrey40, styleDots|styleThick|styleOwnScale);
}
}
> Hope it is of help to someone.
>
> //////////////////////////////////////////////////////////////
>
> [original afl code]
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
------------------------ Yahoo! Groups Sponsor --------------------~-->
Try Online Currency Trading with GFT. Free 50K Demo. Trade
24 Hours. Commission-Free.
http://us.click.yahoo.com/RvFikB/9M2KAA/U1CZAA/GHeqlB/TM
--------------------------------------------------------------------~->
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 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/
<*> 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/
|