Add Hugging Face metadata to README.md
Browse files
README.md
CHANGED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
title: Stock Sentiment Analysis
|
3 |
+
emoji: 📈
|
4 |
+
colorFrom: blue
|
5 |
+
colorTo: green
|
6 |
+
sdk: gradio
|
7 |
+
sdk_version: 4.29.0 # Or check your installed version with pip show gradio
|
8 |
+
python_version: 3.10 # Adjust if necessary
|
9 |
+
app_file: app.py
|
10 |
+
license: apache-2.0 # Or choose another license if preferred
|
11 |
+
---
|
12 |
+
|
13 |
+
# Stock Sentiment Analysis Dashboard
|
14 |
+
|
15 |
+
This application fetches stock price data and related news articles, performs sentiment analysis on the news using FinBERT, and visualizes the relationship between stock price and news sentiment.
|
16 |
+
|
17 |
+
**Features:**
|
18 |
+
* Enter a stock ticker and date range.
|
19 |
+
* Visualizes stock price vs. average daily sentiment.
|
20 |
+
* Calculates correlation between lagged sentiment and price changes.
|
21 |
+
* Displays recent news headlines with their sentiment scores.
|
22 |
+
|
23 |
+
**Disclaimer:** This is a demo application and not financial advice.
|