I have created below formula
import refinitiv.data as rd
rd.open_session()
df = rd.get_data(
universe = ['META.O'],
fields = [
'TR.TPEstValue.brokername',
'TR.OverallAnalystEstimateRating'
]
)
display(df)
Can the team confirm if this is the best way to get the data required? Kindly advise. Thanks.