I just need to get a stock price and I've been using this.
Code: Select all
Filename$ = SaveFileRequester("Where to save txt file", "", "", 0)
If ReceiveHTTPFile("http://finance.yahoo.com/q?s=%5EDJI", Filename$)
Debug "File recieved and written to disk. If the remote file was not found, it will contains the webserver error."
Else
Debug "No file recieved (network error)."
EndIf
Is there an easier way to get the stock price without all the other text?