Jump to content

Recommended Posts

Posted

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

  • 9 years later...

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
  • Recently Browsing   0 members

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