hi team, can you advise if it's expected that a user would get different BID and ASK values for the same RIC, which is RELI314000G.NS between the two syntaxes?
import refinitiv.data as rd
rd.open_session()
df = rd.get_data(
universe = ['RELI314000G.NS'],
fields = [
'BID',
'ASK'
]
)
display(df)
and
streams = rd.content.pricing.Definition(
universe=mainStockslist,
fields=['TRDPRC_1','BID', 'ASK']
).get_stream()