Symbol Conversion does not seem to give me the correct RIC.

CharlesYan
Newcomer
Previously, I made a post about retrieving the data here, the code will be pasted again here.
When I typed in 'TYO', the code does not return the correct answer 'TYO' but 'TYOGc1'. I would be grateful if someone can help me out.
import pandas as pd
import refinitiv.data as rd
from refinitiv.data.content import symbol_conversion
def RefinitivRetriever(Ticker):
rd.open_session()
converted = []
Refinitiv_Info = symbol_conversion.Definition(
symbols = Ticker,
from_symbol_type = symbol_conversion.SymbolTypes.TICKER_SYMBOL,
to_symbol_types = [
symbol_conversion.SymbolTypes.RIC
],
).get_data()
# This step is to check if the conversion is successful. If not, fill in with an empty string.
for t in Ticker:
try:
converted = converted.append(Refinitiv_Info.data.raw['Matches'][t]['RIC'])
except KeyError:
converted = converted.append('')
# Return a dataframe with two columns, first one RIC list, while the second one Company Market Cap
RICs = Refinitiv_Info.data.df['RIC'].tolist()
MarketCap = rd.get_data(RICs, fields = ['TR.CompanyMarketCap'])
MarketCap.columns = ['RIC', 'MarketCap']
rd.close_session()
0
Best Answer
-
Hi @CharlesYan,
Please use further arguments within the `symbol_conversion.Definition` to narow down your search. E.g.: `asset_class`
import refinitiv.data as rd
from refinitiv.data.content import symbol_conversion
rd.open_session()
test = symbol_conversion.Definition(
symbols = "TYO",
from_symbol_type = symbol_conversion.SymbolTypes.TICKER_SYMBOL,
to_symbol_types = [symbol_conversion.SymbolTypes.RIC],
asset_class="Funds").get_data()
display(test.data.df)
rd.close_session()
You can find information about these arguments here, which was linked here.0
Answers
-
@jonathan.legrand . Thx for your guidance. Can I know any other asset_class I can choose? I would be grateful if you can locate me to the documentation line.Hi,
The reason was my list not only contains funds but also ordinary stocks.
0 -
Hi @CharlesYan; you can find information about these arguments, such as `asset_class `, here, which was linked here.
0 -
0
Categories
- All Categories
- 3 Polls
- 6 AHS
- 36 Alpha
- 167 App Studio
- 6 Block Chain
- 4 Bot Platform
- 18 Connected Risk APIs
- 47 Data Fusion
- 34 Data Model Discovery
- 688 Datastream
- 1.4K DSS
- 624 Eikon COM
- 5.2K Eikon Data APIs
- 11 Electronic Trading
- 1 Generic FIX
- 7 Local Bank Node API
- 3 Trading API
- 2.9K Elektron
- 1.4K EMA
- 255 ETA
- 557 WebSocket API
- 38 FX Venues
- 14 FX Market Data
- 1 FX Post Trade
- 1 FX Trading - Matching
- 12 FX Trading – RFQ Maker
- 5 Intelligent Tagging
- 2 Legal One
- 23 Messenger Bot
- 3 Messenger Side by Side
- 9 ONESOURCE
- 7 Indirect Tax
- 60 Open Calais
- 276 Open PermID
- 44 Entity Search
- 2 Org ID
- 1 PAM
- PAM - Logging
- 6 Product Insight
- Project Tracking
- ProView
- ProView Internal
- 22 RDMS
- 1.9K Refinitiv Data Platform
- 692 Refinitiv Data Platform Libraries
- 4 LSEG Due Diligence
- LSEG Due Diligence Portal API
- 4 Refinitiv Due Dilligence Centre
- Rose's Space
- 1.2K Screening
- 18 Qual-ID API
- 13 Screening Deployed
- 23 Screening Online
- 12 World-Check Customer Risk Screener
- 1K World-Check One
- 46 World-Check One Zero Footprint
- 45 Side by Side Integration API
- 2 Test Space
- 3 Thomson One Smart
- 10 TR Knowledge Graph
- 151 Transactions
- 143 REDI API
- 1.8K TREP APIs
- 4 CAT
- 27 DACS Station
- 121 Open DACS
- 1.1K RFA
- 105 UPA
- 194 TREP Infrastructure
- 229 TRKD
- 918 TRTH
- 5 Velocity Analytics
- 10 Wealth Management Web Services
- 92 Workspace SDK
- 11 Element Framework
- 5 Grid
- 18 World-Check Data File
- 1 Yield Book Analytics
- 48 中文论坛