如何从澳大利亚证券交易所获取股票价格

发布于 2024-08-07 22:26:37 字数 1436 浏览 3 评论 0原文

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

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

发布评论

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

评论(5

画离情绘悲伤 2024-08-14 22:26:37

ASX 必须有 API。但似乎有一些选项,例如RSS Feeds。直播不是免费的,免费直播会延迟 20 分钟。

ASX must have an API. But there seem to be some options such as RSS Feeds. Live feeds are not free, free feeds are 20minutes delayed.

娇纵 2024-08-14 22:26:37

我认为与 ASX 交谈将是正确的选择。他们肯定会为您提供实时信息,但需要付出一定的代价。

I think that talking to ASX is going to be the way to go. They'll certainly provide you with real time information, but at a price.

挖鼻大婶 2024-08-14 22:26:37

雅虎财经为澳大利亚证券交易所上市公司提供延迟服务(15 分钟)。您也可以通过谷歌财经的屏幕抓取来获取它(也延迟了)。由于您尚未列出,可能需要一段时间才能选择您的符号。我相信两者都从 csinitiative 获取数据,这是一项付费服务​​。我不确定你使用的是什么编程语言,但雅虎服务肯定有许多已经用 python/ruby/java 构建的库。

Yahoo Finance offer a delayed service (15 mins) on ASX listed companies. You could also fetch it with a screen scrape of google finance (also delayed). Since you are not yet listed it may take a while before either pick up your symbol. I believe both get their data from csinitiative which is a pay-for service. I'm not sure what programming language you are using but the Yahoo service certainly has many libraries already built in python/ruby/java.

抹茶夏天i‖ 2024-08-14 22:26:37

从雅虎获取数据非常简单。

以下是 MSFT 的链接:http://ichart.yahoo.com/table.csv? s=MSFT

要获取 ASX 数据,请将 .AX 添加到代码末尾,例如

http://ichart.yahoo.com/table.csv?s=MPL.AX

我写了一篇关于获取和绘制股票市场数据的文章:

https://www.codeproject.com/Articles/1069489/Highstock-plus- Data-Forge-plus-Yahoo

Getting data from Yahoo is straight forward.

Here's a link for MSFT: http://ichart.yahoo.com/table.csv?s=MSFT

To get data for the ASX add .AX to the end of the code, eg

http://ichart.yahoo.com/table.csv?s=MPL.AX

I've written an article about about acquiring and graphing stock market data:

https://www.codeproject.com/Articles/1069489/Highstock-plus-Data-Forge-plus-Yahoo

暖伴 2024-08-14 22:26:37

在每只股票的末尾添加“.AX”使我能够获取数据:

stock_list = [“ANZ.AX”,“WBC.AX”,“CBA.AX”,“QAN.AX”, “WOW.AX”]

Adding an ".AX" at the end of each of stocks enabled me to get the data:

stock_list = ["ANZ.AX", "WBC.AX", "CBA.AX", "QAN.AX", "WOW.AX"]

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