雅虎财经API
问雅虎是否提供任何财经 API?如果是,该 API 的链接是什么。
Q. Do Yahoo provides any Finance API? If yes, the what's the link to that API.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
问雅虎是否提供任何财经 API?如果是,该 API 的链接是什么。
Q. Do Yahoo provides any Finance API? If yes, the what's the link to that API.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
恕我直言,找到此信息的最佳地点是:
http://code.google.com/p/yahoo-finance-management/
我曾经也使用“gummy-stuff”,但后来我发现这个页面更有组织性并且充满了易于使用的示例。我现在使用它来获取 CSV 文件中的数据并在我的 C++/Qt 项目中使用这些文件。
IMHO the best place to find this information is:
http://code.google.com/p/yahoo-finance-managed/
I used to use the "gummy-stuff" too but then I found this page which is far more organized and full of easy to use examples. I am using it now to get the data in CSV files and use the files in my C++/Qt project.
这是我用 C# 创建的一个简单的抓取工具,用于将流式报价数据打印到控制台。它应该很容易转换为java。基于以下帖子:
http://blog.underdog-projects.net/2009/02/bringing-the-yahoo-finance-stream-to-the-shell/
不太花哨(即没有正则表达式等),只是一个快速的& ;肮脏的解决方案。
Here's a simple scraper I created in c# to get streaming quote data printed out to a console. It should be easily converted to java. Based on the following post:
http://blog.underdog-projects.net/2009/02/bringing-the-yahoo-finance-stream-to-the-shell/
Not too fancy (i.e. no regex etc), just a fast & dirty solution.
您可以使用 YQL,但 yahoo.finance.* 表不是核心 yahoo 表。它是一个开放的数据表,使用“csv api”并将其转换为 json 或 xml 格式。使用起来更方便,但并不总是可靠。不久前我无法使用它,因为表达到了存储限制或其他什么...
您可以使用这个 php 库使用 YQL 获取历史数据/报价
https://github.com/aygee/php-yql-finance
You may use YQL however yahoo.finance.* tables are not the core yahoo tables. It is an open data table which uses the 'csv api' and converts it to json or xml format. It is more convenient to use but it's not always reliable. I could not use it just a while ago because it the table hits its storage limit or something...
You may use this php library to get historical data / quotes using YQL
https://github.com/aygee/php-yql-finance
雅虎非常易于使用并提供定制数据。使用以下页面了解更多信息。
Finance.yahoo.com/d/quotes.csv?s=AAPL+GOOG+MSFT=pder=.csv
警告 - 网络上有一些教程向您展示如何执行此操作,但您放置的区域如果您按已发布的方式使用股票代码中的内容,则会导致错误。您将得到“缺少格式值”。我发现的教程省略了有关 GOOG 的评论。
GOOG 的示例 URL:
http:// /download.finance.yahoo.com/d/quotes.csv?s=%40%5EDJI,GOOG&f=nsl1op&e=.csv
Yahoo is very easy to use and provides customized data. Use the following page to learn more.
finance.yahoo.com/d/quotes.csv?s=AAPL+GOOG+MSFT=pder=.csv
WARNING - there are a few tutorials out there on the web that show you how to do this, but the region where you put in the stock symbols causes an error if you use it as posted. You will get a "MISSING FORMAT VALUE". The tutorials I found omits the commentary around GOOG.
Example URL for GOOG:
http://download.finance.yahoo.com/d/quotes.csv?s=%40%5EDJI,GOOG&f=nsl1op&e=.csv