dcop Posted May 20, 2006 Posted May 20, 2006 If FileExists("C:\Temp\") Then Real() Else DirCreate("C:\Temp\") Real() EndIf Func Real() InetGet ( "http://finance.yahoo.com/q/ecn?s=orcl", "c:\temp\quote.txt", 1) $fil = FileRead("C:\Temp\quote.txt", 100000) $sear = StringInStr ( $fil, "last trade") $par = StringMid ( $fil, $sear, 60) $par2 = StringMid($par, 48, 5) MsgBox(0, "", $par2) FileDelete ( "C:\Temp\quote.txt" ) EndFunc Exit This goes to Yahoo Finance real time quotes and returns the current quote. You could make one for each stock you watch or variable the stock symbol into an input box. This one does Oracle's Price olmanRvr 1
olmanRvr Posted January 31, 2016 Posted January 31, 2016 Hi dcop, Thanks for the code. I will try it out and get back. cheers olmanR
Developers Jos Posted January 31, 2016 Developers Posted January 31, 2016 ... might be dcop isn't seeing this as the post is around 10 years old and the OP hasn't been around since 2010. Jos SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
olmanRvr Posted January 31, 2016 Posted January 31, 2016 Yeah, pretty old post.But I thank him for the code any way...... olmanR
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now