Reputation: 317
I am currently using the Yahoo finance API to retrieve stock data in my js application. I would like to implement a feature that shows the top market movers or trending stocks.
Does anybody know how to structure the YQL query to retrieve a list of stocks that are marked as 'trending' or 'top movers'?
Thanks!
Upvotes: 0
Views: 1446
Reputation: 1
** Intelligent Stock Market API ** can easily be used to get trending stocks not only on yahoo but also on social media, you can find the Python Sdk for this API here
Hope you its all that you wish it to be
Upvotes: 0
Reputation: 46
sir!
I'm currently studying the variables in the yahoo.finance.quotes datatable, and I stumbled upon this one: TickerTrend, where ticker is probably the symbol.
The query
select * from yahoo.finance.quotes where symbol="^GSPC"
made on the YQL Console, returns the value NULL, but for AAPL it returns this: ====== (which I don't know what it is).
hope this help you!
Upvotes: 0