Yahoo YQL get data using sql query for different stock exchanges

谁说胖子不能爱 提交于 2020-01-05 07:30:28

问题


hot to get nasdaq, Dow Jones,S&P 500, Nikkei 300 from yahoo apl.

select * from yahoo.finance.quotes where symbol in ("^IXIC") not work.

回答1:


You have to use different tables for stock exchange...

You can use any of the 2 options below,

select * from yahoo.finance.quoteslist where symbol= '^IXIC'

OR

select * from yahoo.finance.quoteslist where symbol in ('^GSPC','^IXIC') 


来源:https://stackoverflow.com/questions/19688567/yahoo-yql-get-data-using-sql-query-for-different-stock-exchanges

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!