Smart-Stock is a web application made for VandyHacks XI that allows users to enter specific stock tickers (AAPL, AMZN, etc.) and see the public sentiment for those stocks at that very moment. The sentiments are tracked and displayed in real time with Chart.js. Smart-Stock utilizes the Reddit API and performs Sentiment Analysis with Python TextBlob
Clone The Github Repository:
git clone <SSH/HTTPS Key>
Install Frontend Dependencies:
cd client
npm i
Install Backend Dependencies:
cd ../server
npm i
Go to package.json and add the following scripts:
"start": "node server"
"dev": "nodemon server"
Run Frontend App With:
npm run dev
in client folder
Run Backend App With:
python3 app.py
in server folder