Is there a way to download and parse stock quotes from yahoo or google using the android platform?

Thanks

link|improve this question

2  
I see you have added a bounty for this question. I was wondering what further information you are looking for that is not in the existing answers? – dave.c Mar 16 '11 at 16:39
Did u find a way for this? if so can u tell me the code in android for achieving this? – EnthuDeveloper Jan 16 at 12:44
feedback

5 Answers

Yes. Android includes an http client and Xml + Json libraries.

link|improve this answer
do you know where I can read about these? – locoboy Mar 10 '11 at 19:56
Details are available on android developer site. – Karan Mar 15 '11 at 7:22
feedback

You could also do it with straight HTTP using YQL

YQL console is useful for testing. The example above uses the google.igoogle.stock table

link|improve this answer
how exactly are you retrieving this data? – locoboy Mar 14 '11 at 4:51
exactly through http get, that's how yql works. How is it indexed into the YQL table? Not sure – slf Mar 15 '11 at 18:57
feedback

Redistribution of Yahoo Finance data is only allowed if you are using the badges the team has created: http://finance.yahoo.com/badges. Using YQL for non-personal use would be a breach of terms of service.

Google Finance APIs and Tools (Terms)

link|improve this answer
feedback

I think this blog post could help you:

http://benjisimon.blogspot.com/2009/01/truly-simple-stock-api.html

It uses Yahoo Finance to retrieve stock quotes.

This uses the same service, but does it download into a spreadsheet

http://www.gummy-stuff.org/Yahoo-data.htm

However it could be useful since there is a lot of explanaiton.

link|improve this answer
feedback

Have a look to the BuzzBox SDK for android and in particular to the example here:

http://hub.buzzbox.com/android-sdk/quickstart

The example is using the Yahoo weather api to build a notification weather app. If you simply adapt it to get stock data using YQL as suggesed before YQL

It's a very similar JSON parsing problem.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.