question

Upvotes
Accepted

rdp.search() not returning ISIN and IsActive

I use rdp.search () as follow,


rdp.search(query= 'Apple or Facebook or Amazon'

, top=10000

, view = rdp.SearchViews.SearchAll

, filter = "ExchangeName eq 'CBOE'"

, select = 'ISIN,RIC,CUSIP,ExchangeCode,ExchangeCountry,ExchangeName,IsActive')


Anyway, I did not get 'ISIN' and 'IsActive'. Did I make anything wrong ?




rdp-apirefinitiv-data-platform
capture.jpg (123.6 KiB)
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 5.0 MiB each and 10.0 MiB total.

Upvotes
Accepted
3.8k 4 4 6

Hi @vaetit.sirasupprakchai1

Try this:

rdp.search(
    view = rdp.SearchViews.SearchAll,
    query = 'Apple or Facebook or Amazon',
    filter = "ExchangeName eq 'CBOE' and AssetStateName eq 'Active'",
    select = 'IssueISIN,RIC,CUSIP,ExchangeCode,ExchangeCountry,ExchangeName,AssetStateName',
        
)
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 5.0 MiB each and 10.0 MiB total.

Thank you very much.

Upvote
9.7k 49 38 60

Hi @vaetit.sirasupprakchai1,

You can find an article on the developer community around Search. The article will outline will discuss some techniques to help your journey through Search and how to determine ways to figure out the Properties, search filtering, sorting, etc.

When I typed in RDP Search in the developer community, the above article came up #1.

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 5.0 MiB each and 10.0 MiB total.

Click below to post an Idea Post Idea