question

Upvotes
Accepted
11 6 8 15

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 512.0 KiB each and 1.0 MiB total.

@Eikon10

Hi,

Thank you for your participation in the forum.

Is the reply below satisfactory in answering your question?

If yes please click the 'Accept' text next to the reply. This will guide all community members who have a similar question.

Otherwise please post again offering further insight into your question.

Thanks,

AHS

Please be informed that a reply has been verified as correct in answering the question, and has been marked as such.

Thanks,
AHS

1 Answer

· Write an Answer
Upvotes
Accepted
17.3k 82 39 63

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 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.