I cannnot take bid ask price of JGB by the code attached below. I would appreciate it if you could tell me the reason and solotions to correct this problem. I think this may happen because I cannot take appropriate RIC code of JGB.
import lseg.data as ld
from lseg.data.content import symbol_conversion
ld.open_session()
isin_list = ["US0378331005", "JP1201091939"]
resp = symbol_conversion.Definition(
symbols = isin_list,
from_symbol_type = symbol_conversion.SymbolTypes.ISIN,
to_symbol_types = [symbol_conversion.SymbolTypes.RIC]
).get_data()
display(resp.data.df)
ld.get_data(
universe = resp.data.df["RIC"].tolist(),
fields = ["BID","ASK"])