PureBytes Links
Trading Reference Links
|
BTW, there is a way to get rid of urlget.exe from scripts completely. by using FileSystemObject methods you can write data to disk, by using adodb.stream you can download binary data, etc. below is a sample script that may give you a flavor..
objHTTP = new ActiveXObject("Msxml2.ServerXMLHTTP");
objWSH = new ActiveXObject("WScript.Shell");
objFSO = new ActiveXObject("Scripting.FileSystemObject");
strURL = 'http://sc.sc8.finance.lycos.com:443/18467?User=demo&Pswd=demo&DataType=DATA&+Symbol=INDU&Interval=5';
objHTTP.open("GET",strURL,false);
objHTTP.send();
WScript.Echo(objHTTP.responseText);
cheers,
BM
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Yahoo! Domains - Claim yours for only $14.70
http://us.click.yahoo.com/Z1wmxD/DREIAA/yQLSAA/GHeqlB/TM
---------------------------------------------------------------------~->
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.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/
|