question

Upvotes
Accepted
9 2 3 9

Get ADR exchange ratio

Hi everyone,

currentIy I retreive all ADRs for a given company using the rdp.search method, with the following command:

rdp.search(view = rdp.SearchViews.EquityQuotes,query=compName,filter="DTSimpleType xeq 'Depository Receipt'")

However, with this type of request I do not get the ADR exchange ratio.

Has anybody an idea how to get this value?


Thank you very much in advance for your help!

rdp-apirefinitiv-data-platform
icon clock
10 |1500

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

1 Answer

Upvotes
Accepted
9.7k 49 38 60

Hi @Eikon10

I believe the results will be data-dependent. That is, while there are ratio values available, not every hit will provide the data. For example, the following request will produce ratio values, i.e.

df = rdp.search(
    view = rdp.SearchViews.EquityQuotes,
    query = "Techpoint Inc",
    filter = "RCSAssetCategoryLeaf xeq 'Depository Receipt' and \
              IsPrimaryRIC eq true",
    select = "_, CurrentRatio, QuickRatio",
    top = 100
)

ahs.png


ahs.png (10.4 KiB)
icon clock
10 |1500

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

Click below to post an Idea Post Idea