PureBytes Links
Trading Reference Links
|
I have a JavaScript file the runs 10 backtests on the same afl. I did a bunch of googles to find out how to pop up a window for telling me when each of these 10 has been completed and when the entire job is completed. Here is what I came up so far and need help.
var i = 1;// A loop will take i from 1 to 10 in final code.
var WshShell = WScript.CreateObject("WScript.Shell");
// Informational Popup "Step 1" all the way to "Step 2" for 5 seconds
Return = WshShell.popup("Step " & i, 5, Bert Job, 64);
// Informational Popup "Done" for 10 seconds outside of loop
Return = WshShell.popup("Done", 10, Bert Job, 64);
// Does not work. Help needed.
------------------------------------
**** 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/
|