PureBytes Links
Trading Reference Links
|
Hi,
I am using a program that has historic fundamental data to create portfolios of stocks and import them into Amibroker.I would then like to create an ATC and track the portfolio..
I am using the formula which appears to work;
------------------------------------------
Buy=Sell=Short=Cover=0;
sym1 = "~myindex" ;
AddToComposite( L, sym1,"L",1+2+4+8+16+128);
AddToComposite( O, sym1,"O",1+2+4+8+16+128);
AddToComposite( H, sym1,"H",1+2+4+8+16+128);
AddToComposite( C, sym1,"C",1+2+4+8+16+128);
AddToComposite( V, sym1,"V",1+2+4+8+16+128);
-----------------------------------------------
I only imported one list so far,and when I ran(scan) the ATC,it automatically defaulted to group 253.If I now import another list and run/scan the ATC,will that also default to group 253??If so,is it ok to have multiple ATC's in one group??Are there other alternatives?
Also,if I delete an ATC,will I lose the stock symbols in it?
Thanks,
Allan
------------------------------------
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
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:
amibroker-digest@xxxxxxxxxxxxxxx
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/
|