Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Any .NET examples for Yahoo Query Language (YQL)?

I'd like to make some simple calls to Yahoo Query Language (YQL). Has anyone implemented this in .NET?

Here is the query I'd like to make from .NET:

select MarketCapitalization 
from yahoo.finance.quotes 
where symbol 
  in ("YHOO","AAPL","GOOG","MSFT","unknown")

Update

Everything is working 100%, thanks @fernaramburu.

like image 521
Contango Avatar asked Jun 06 '11 12:06

Contango


1 Answers

Yes. There two good examples that are actually working because I just tested some hours ago...

http://jarloo.com/get-yahoo-finance-api-data-via-yql/

and

http://jarloo.com/code/get-historical-stock-data/

Hope this help! It helps me a lot!

like image 80
fernaramburu Avatar answered Oct 10 '22 15:10

fernaramburu