question

Upvotes
Accepted
1 1 1 8

ASX300 成分股snapshot数据

我们想实现每个工作日上午8:30和10:00两个时间点,通过Eikon获得两次澳洲ASX300成分股的四个实时数据(1.一天的股价变动%,2.股价变化值,3.当前股价,4当前市值)并按市值从大到小排序。

我们想探讨如何通过Eikon自动在这两个时间点完成数据更新工作。

目前来看,ek.get_time_series()可以提取intraday的交易数据的话会很有帮助,或者考虑scheduler。任何建议,也和我们说,感谢!

eikoneikon-data-apiworkspaceworkspace-data-apirefinitiv-data-platform-eikon
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

1 Answer

· Write an Answer
Upvotes
Accepted
21.8k 57 14 21

Hello @yu.yang,

Eikon timeseries API call can only provide historical bar data (i.e. Open, High, Low, Close etc). It seems like you are trying to get real time data. You could try to do something similar to this:

ek.get_data('0#.AXKO', ['CF_LAST', 'TR.CompanyMarketCapitalization', 'TR.PricePctChg52W'])

1635278476028.png


As regards to which fields are most appropriate for your query, it is best to contact Refinitiv service desk at my.refinitiv.com to speak to a content expert.


1635278476028.png (22.3 KiB)
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.