雅虎财经 CSV 查询结果中未返回 1 月

发布于 2024-08-21 17:12:24 字数 518 浏览 7 评论 0原文

我需要从网络服务获取股票价格,我发现的唯一合理的方法是使用下面的查询字符串。

问题是,使用下面的字符串,结果从二月开始,而不是一月。有人有这项服务的经验并可以帮助我吗?

http://ichart.finance.yahoo.com/table.csv?s=GOOG&a=1&b=1&c=2010&d=1& ;e=1&f=2010&g=d&ignore=.csv

另外,是否有人对金融网络服务有任何好的建议链接。我访问过雅虎页面,但他们似乎只提到了 RSS 提要。

另外,Google Finance API 页面有点令人困惑。

谢谢。 康纳

I need to get stock prices from a web service and the only reasonable way i've found is tu use the below query string.

The problem is that with the below string the result start in February and not January. Has anybody experience with this service and can help me?

http://ichart.finance.yahoo.com/table.csv?s=GOOG&a=1&b=1&c=2010&d=1&e=1&f=2010&g=d&ignore=.csv

Also, does any body have any good advice links on financial web services. I've been on the Yahoo page but all they seem to mention is RSS feeds.

Also, the Google Finance API page is kind of confusing.

Thanks.
Conor

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笔芯 2024-08-28 17:12:24

url 的参数如下:

a <- beginning month (0--11)
b <- beginning day (1--??)
c <- Beginning year
d <- End month (0--11)
e <- End day 
f <- End year
g <- 'd'=>daily, 'v'=>dividends, 'm'=>monthly,

因此,要从一月份开始,请设置 a=0,而不是 a=1

http://ichart.finance.yahoo.com/table.csv?s=GOOG&a=0&b=1&c=2010&d=1& ;e=1&f=2010&g=d&ignore=.csv

The parameters to the url are as follows:

a <- beginning month (0--11)
b <- beginning day (1--??)
c <- Beginning year
d <- End month (0--11)
e <- End day 
f <- End year
g <- 'd'=>daily, 'v'=>dividends, 'm'=>monthly,

So to start in January, set a=0, not a=1.

http://ichart.finance.yahoo.com/table.csv?s=GOOG&a=0&b=1&c=2010&d=1&e=1&f=2010&g=d&ignore=.csv

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文