Upgrade from Eikon -> Workspace. Learn about programming differences.

For a deeper look into our Eikon Data API, look into:

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvotes
Accepted
1 0 0 0

Can codes be used in Rics or tickers?

Can codes be used in Rics or tickers?

pythonworkspace#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
Accepted
84.6k 287 53 77

@sajid.i

Thank you for reaching out to us.

Please specify which methods or code. You can direclty test it with tickers. Moreover, the behaviour should be similar to the functions in Eikon Excel or Workspace Excel.

Typically, APIs provide methods to convert ticker to RICs. For example the Refinitiv Data Library for Python provide the symbol_conversion endpoint to convert symbologies.

response = symbol_conversion.Definition(
    symbols=["PTT"],
    from_symbol_type=symbol_conversion.SymbolTypes.TICKER_SYMBOL,
    to_symbol_types=[
        symbol_conversion.SymbolTypes.RIC
    ],
).get_data()


response.data.df

The output is:

1720583790106.png



1720583790106.png (2.7 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.