An advanced stock price prediction system that combines LSTM deep learning with sentiment analysis of financial news to improve forecasting accuracy.
Quantrade uses LSTM neural networks and financial news sentiment analysis to provide more accurate stock price predictions by incorporating market sentiment with historical trends. Built with Python, PyTorch, Flask, MongoDB, AWS S3, and NLTK.
- AI-driven stock price prediction using LSTM neural networks
- Real-time financial news sentiment analysis using NLTK VADER
- 25% improved forecasting accuracy through news integration
- Interactive web interface with real-time predictions
- Historical data caching with MongoDB
- Secure data storage with AWS S3
- Python
- PyTorch (LSTM implementation)
- scikit-learn (Data preprocessing)
- yfinance (Stock data)
- Flask (Web interface)
- MongoDB (News caching)
- AWS S3 (Data storage)
- NLTK (Sentiment analysis)
- Clone the repository
- Install dependencies:
pip install -r requirements.txt
- Set up environment variables in
.env
:
NEWS_API_KEY=your_newsapi_key
MONGODB_URI=your_mongodb_uri
AWS_ACCESS_KEY=your_aws_access_key
AWS_SECRET_KEY=your_aws_secret_key
S3_BUCKET_NAME=your_s3_bucket_name
- Run the application:
python app.py
The web interface will be available at http://localhost:5000
.
- Enter a stock symbol (e.g., AAPL, GOOGL)
- Specify the number of days for prediction
- View predictions, sentiment analysis, and recent news
- Monitor accuracy improvements through news integration
app.py
: Flask web applicationutils/
:models.py
: LSTM and Random Forest implementationssentiment_analysis.py
: News fetching and sentiment analysisdata_processing.py
: Data preparation and preprocessing
MIT License