Jump to content

Get Real Time Stock Quotes


dcop
 Share

Recommended Posts

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

Link to comment
Share on other sites

  • 9 years later...
  • Developers

... 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.
  :)

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...