Get root code

Hi all,


I'm trying to create a function to creates the RIC code of a futures contract based on information like underlying, expiration date, etc...


I understand how the RIC code is constructed, the only thing I need is a reliable way of getting the "root code" of the underlying of my future contract. Is there an API call where i can pass information (ISIN, CUSIP, ...) of the underlying and get its root code, so that i can then build the RIC code ? For ex I could input 'S&P500 EMINI" or its corresponding ISIN and get "ES" in return ?


Thanks for your help.


Best Answer

  • adam.leroux
    Answer ✓

    Hi ! I've been talking with the LSEG helpdesk and i've been provided an answer :

    df = rd.get_data(
    universe =
    ['1SPXFM4',
    'ESH25'],
    fields = ['MNEMONIC']
    )


    This can fetch the root RICs for the given RICs. I've yet to test it but it looks promising


Answers

  • Hi @adam.leroux,


    I am not sure, if there is a direct way to get the RIC root, I asked the Helpesk to learn more about it and will update you here. However I may have a solution for the second part of your problem, which is reconstructing RIC codes based on some parameters. Please check my article below which includes a Github repo link on the right:

    Reconstructing RICs for expired futures contracts | Devportal (lseg.com)

    I have created a python function which takes RIC root, expiration month and the year as an input and returns the futures RIC. For example for SPX that would be:

    fr.get_futures('ES', 3, 2021)

    screenshot-2024-05-02-at-161610.png


    Hope this helps for building the RIC. I will come back to you re finding the RIC root once get an update.


    Best regards,

    Haykaz

  • Hi, yes thats what i'm using too ahah, I only need a way to get the RIC root.

    For exemple in the code you provided, find a way to know that SPX RIC root is "S".

  • @adam.leroux

    It could be search API in the Refinitiv Data Library for Python.

    df = rd.discovery.search(
        view = rd.discovery.Views.SEARCH_ALL,
        query = "S&P500 EMINI",
        select = "BusinessEntity,DocumentTitle,RIC,RicRoot",
        top = 100)
    df

    1714707744575.png

    The examples are on GitHub.

  • Hi @adam.leroux ,


    I have learned from Helpdesk that there is no straightforward way to get the RIC Roots (please note that there are many not just one) and my colleague's suggestion above seems to be the best approach we have. What you can further do is apply some additional filter criteria to get only the RIC roots you are interested in, for example:

    df = rd.discovery.search(
    view = rd.discovery.Views.EQUITY_QUOTES,
    top = 1000,
    filter = "(AssetState eq 'AC' and SearchAllCategory eq 'Futures' and SearchAllCategoryv2 eq 'Futures' and ((UnderlyingQuoteRIC eq '.INX')))",
    select = "RIC,SearchAllCategoryv2,SearchAllCategory,DTSubjectName,ExpiryDate,UnderlyingQuoteRIC, RicRoot"
    )
    df


    screenshot-2024-05-03-at-161828.png

    Best regards,

    Haykaz

  • That is great that you are provided with a workable solution. I was initially thinking you wanted to input instrument RIC, eg .INX or .SPX and get the RIC Roots (such as ES) back where the code with MNEMONIC will not return anything. Nevertheless, this is a solution if you provide futures RICs as an input Universe.