Trading_skills news-sentiment
Get recent news and sentiment for a stock. Use when user asks about news, headlines, sentiment, what's happening with a stock, or recent developments.
install
source · Clone the upstream repo
git clone https://github.com/staskh/trading_skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/staskh/trading_skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/.claude/skills/news-sentiment" ~/.claude/skills/staskh-trading-skills-news-sentiment && rm -rf "$T"
manifest:
.claude/skills/news-sentiment/SKILL.mdsource content
News Sentiment
Fetch recent news from Yahoo Finance.
Instructions
Note: If
is not installed oruvis not found, replacepyproject.tomlwithuv run pythonin all commands below.python
uv run python scripts/news.py SYMBOL [--limit LIMIT]
Arguments
- Ticker symbolSYMBOL
- Number of articles (default: 10)--limit
Output
Returns JSON with:
- Array of recent news with title, publisher, date, linkarticles
- Brief summary of overall sentimentsummary
Present key headlines and note any significant news that could impact the stock.
Dependencies
yfinance