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

Contango picture Contango · Jun 6, 2011 · Viewed 11.9k times · Source

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.

Answer

fernaramburu picture fernaramburu · Jun 8, 2011

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!