question

Upvotes
1 0 0 0

downloading list of ASX200 Constituent companies

Hi, how can i download ASX200 Constituent companies using Refinitiv workspace?

workspace#technologyrefinitiv-data-libraries
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
14.4k 30 5 10

Hi @amalhamdana.alhamdan ,

The code below can be used, example code can be found here

import refinitiv.data as rd
from refinitiv.data.discovery import Chain

rd.open_session()
asx200 = Chain("0#.AXJO")

print(asx200.constituents))

1715138969142.png

Then from the list of Constituents, retrieve the data with get_data function, for example

rd.get_data(asx200, ['TR.CommonName', 'BID', 'ASK', 'TR.Revenue'])

1715139056436.png

This article can be useful for you in using the Data Library The Data Library for Python - Quick Reference Guide (Access layer)

I hope this helps and please let me know in case you have any question.


1715138969142.png (59.8 KiB)
1715139056436.png (33.2 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.