question

Upvotes
Accepted
5 1 2 3

What are the available Chain List for ShangHai and ShenZhen Shariah Stocks?

Hi Fellow Devs,

I need to retrieve information regarding the stock code / RIC codes for shanghai/shenzhen shariah compliant stocks. May I ask, what are the available chain list?

Thanks.

#contentchain-ric
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.

Upvotes
Accepted
79.2k 251 52 74

@alexlau

Typically, we provided chain RICs for indices. You can use the RIC search tool to search for RICs.

1669882471095.png

Prefixed the index RICs with 0# to get chain RICs, such as 0#.CSI300. Otherwise, you can use the RDP search, as mentioned by my colleague.


1669882471095.png (42.2 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.

@Jirapongse thank you for your response. I found the exact chain RICs ( 0#SHARIA-CE.SS and 0# SHARIA-CE.SZ) that I need.


However, I was unable to find the sharia chain RICs for ARCA exchange. May I know is there any chain RICs for it?

@alexlau

I found the following indices.

1669959271041.png

However, there is no chain RIC for these indices. You can contact the Content support team directly via MyRefinitiv to confirm this.

1669959271041.png (32.8 KiB)
Upvote
14.2k 30 5 10

Hi @alexlau ,

If you'd like to search for Shariah Stocks in Shanghai and Shenzhen stock exchanges, the Equities Advanced Search can be used. First, type eqsrch into the Eikon/WorkSpace search bar and select Equities Advanced Search. Then add the filter, for example I put the filters to search for equities which theirs exchange include Shanghai/Shenzhen stock exchanges and the Shariah Compliance flag is equal to Yes

1669112494415.png

If this is what you're looking for, to export this query to be used with Refinitiv Data Libraries (RD Libraries) You can click on the "Export Query" option highlighted in the screenshot below. Then try running the code in the Codebook app provided in the Eikon/Refinitiv workspace

1669112709586.png

However, regarding the chain, as the moderators on this forum do not have deep expertise in every type of content available through Refinitiv products. Such expertise is available through Refinitiv Helpdesk, which can be reached via MyRefinitiv.


1669112494415.png (220.8 KiB)
1669112709586.png (412.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.

Here's the output of the exported code running on the Codebook app

import refinitiv.data as rd
rd.open_session()

rd.discovery.search(
view = rd.discovery.Views.EQUITY_QUOTES,
top = 10,
filter = "(AssetState ne 'DC' and SearchAllCategoryv2 eq 'Equities' and ((ExchangeName xeq 'Shenzhen Stock Exchange' or ExchangeName xeq 'Shanghai Stock Exchange') and IsShariahCompliant eq true))",
select = "DTSubjectName,ExchangeName,RIC,IssueISIN,Gics,AssetState,BusinessEntity,PI,SearchAllCategoryv3,SearchAllCategoryv2,SearchAllCategory,CUSIP,CinCUSIP,SEDOL,RCSAssetCategoryLeaf,RCSCurrencyLeaf,ExDividendDate,IsShariahCompliant"
)

1669113039026.png

Hope this helps and please let me know in case you have any further questions.

1669113039026.png (186.4 KiB)
@raksina.samasiri Thank you for your response. I have found the chain list using search tool suggested by @Jirapongse .

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.