Sentiment Auditor Skill
This skill quantifies market sentiment by analyzing news flow related to specific Indian stocks.
Capabilities
- •News Aggregation: Scrapes headlines from sources like Google News (India) or Yahoo Finance (India).
- •Sentiment Scoring: Uses NLP (
textblobor similar) to assign a polarity score between -1.0 (Highly Negative) and +1.0 (Highly Positive). - •Historical Mood Tracking: Trends sentiment over a specified time window.
Tools & Libraries
- •
beautifulsoup4,requestsfor scraping headlines. - •
textblobfor basic NLP sentiment analysis. - •
pandasfor structuring temporal sentiment data.
Workflow
- •Search news for "{Company Name} stock news".
- •Extract headline text and publication timestamps.
- •Pass each headline through the sentiment model.
- •Calculate a "Mood Score" (weighted average of recent sentiment).