Hello Team,
I am using the following code to get news from eikon refenitiv, but it is retrieving just the old news.
df_news = ek.get_news_headlines(query='CRF: Carbon', count=10)
story_id = df_news.loc[df_news['text'].str.contains('CRF: Carbon EUA daily outlook')]['storyId'][0]
# Show the news in HTML format
top_news_story = ek.get_news_story(story_id)
HTML(top_news_story)
For example, here a screenshot of the the news that I would like to get the id everyday in order to get the infoirmation, because every day they release it in the morning. But when I try to get it using python, I get just a old one, and not the newest one.
Here the news that I would like to retrieve:
And this is what I get in my requestion:
It does not correspond to one release today.
Can anyone help me?