PureBytes Links
Trading Reference Links
|
Ara Kaloustian wrote:
> Is there a way of sorting / ranking variables?
>
> I don't want to use rotational trading system. Not flexible enough.
>
> Want to develop trading system based on sector performance, so need to identify top 3 sectors and then select stocks from within those top sectors.
>
> Thanks
>
> ara
Ara,
You can still use the PositionScore variable in systems that don't use
rotational trading.
sector_sym = "~" + CategoryGetName( categorySector, SectorID() );
sector = Foreign( sector_sym, "C" );
sector_rsi = Ref( RSIa(sector, RSI_length), 0 );
PositionScore = sector_rsi;
This naturally relies on creating sector composites first.
I'm not sure how to precisely what you want (top 3) in native AFL. I
actually do some similar things, but I use the MS SQL database as an
intermediary, and with SQL, you can perform all sorts of exotic queries
and sorts.
Regards,
Matt
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/
|