Investment research for everyone, anywhere.
—
Financial news aggregation and market sentiment analysis from multiple sources. The news module provides access to financial news feeds and sentiment analysis tools.
Financial news aggregation from multiple sources with filtering and search capabilities.
def obb.news.company(
symbol: str,
provider: str = None,
**kwargs
) -> ResponseObject:
"""
Get company-specific financial news.
Parameters:
- symbol: Company symbol
- provider: Data provider to use
Returns:
ResponseObject with company news data
"""
def obb.news.world(
provider: str = None,
**kwargs
) -> ResponseObject:
"""
Get world financial news.
Parameters:
- provider: Data provider to use
Returns:
ResponseObject with world news data
"""from openbb import obb
# Get company news
company_news = obb.news.company(symbol="AAPL")
company_df = company_news.to_dataframe()
# Get world financial news
world_news = obb.news.world()
world_df = world_news.to_dataframe()# Retrieve company-specific news
# Analyze sentiment trends
# Monitor market-moving news eventsInstall with Tessl CLI
npx tessl i tessl/pypi-openbb