question

Upvotes
Accepted

How do I get RICs with specific ending from ISIN?

Hi, I am trying to retrieve RICs with specific ending (*=RRPS) from ISINs.

Input:

df = pd.DataFrame()

df = rd.get_data(

universe=['US20717MAB90'],

fields=['TR.RIC']

)

Output:

Instrument RIC

US20717MAB90 20717MAB9=

But I need to be able to find the 20717MAB9=RRPS via workspace's API. Is there a way to do it?

pythonworkspace-data-api#technologyapi#contentrics
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
1.4k 5 3 6

Hi @Aleksandra.Krasilnikova

Try:

rd.get_data(universe=['US20717MAB90'],fields=['TR.RICS(Contributor=RRPS)'])
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.