PureBytes Links
Trading Reference Links
|
hi everyone,
any ideas/solutions to the following challenge? much appreciated.
I have three watchlists List 1 (symbols A and B), List 2 (symbols C and D), and List 3 (symbols E and F).
for each symbol there are four worksheets with tabs Page 1, Page 2, Page 3, and Page 4.
The challenge is to generate automatically 3x2x4 charts when I execute a JScript from outside AB.
I have the following code as a JScript (exportChart.js) that I run outside amibroker.
it works fine and it generates the active chart as a .jpg
AB = new ActiveXObject("Broker.Application");
AB.ActiveWindow.ExportImage( "Fig.jpg", 435, 302 );
AW = AB.ActiveWindow;
AW.ExportImage( "D:\\BB\\Charts\\Fig.jpg", 435, 302 );
I would like to automate the chart generation process for multiple watchlists, multiple symbols and multiple worksheets.
Question: how can this JSript be modified so that it should generate all 24 charts when running it from outside AB? is there any way? or should I organize the lists/symbols in a different way?
many thanks in advance.
regards/dan
__________________________________________________________________________________________
"People want to go where they can find truth"
------------------------------------
**** 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/
|