What's New
News Support
get_news(symbol) — Fetch news headlines for any TradingView symbol (stocks, crypto, forex) or global news. Returns a DataFrame with title, published date, provider, related symbols, and story path.
get_article(story_path) — Fetch full article text from a story path. Works with both open articles (HTML extraction) and paywalled sources like Reuters (JSON AST extraction).
Example
from tvscreener import get_news, get_article
# Get AAPL news headlines
df = get_news("NASDAQ:AAPL")
print(df[["title", "published", "provider"]])
# Read full article
text = get_article(df.iloc[0]["story_path"])
print(text)