Get ADR exchange ratio

Options

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!

Best Answer

  • nick.zincone
    nick.zincone admin
    Answer ✓

    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