Skip to content

upgundecha/Reddit-Stock-Trends

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Reddit Stock Trends 📈

See trending stock tickers on Reddit and check Stock perfomance

GitHub issues

Backend

Reddit API

  • Get your reddit API credentials from here.
  • Follow this article to get your credentials.
  • Go to back/ directory.
  • Create a praw.ini file with the following
[ClientSecrets]
client_id=<your client id>
client_secret=<your client secret>
user_agent=<your user agent>

Note that the title of this section, ClientSecrets, is important because ticker_counts.py will specifically look for that title in the praw.ini file.

Local usage

  • Install required modules using pip install -r requirements.txt.
  • Run ticker_counts.py first.
  • Now run yfinance_analysis.py.
  • You will be able to find your results in data/ directory.
  • [Optional] Run wsgi.py to start a server that returns the data in JSON format. This step will generate the csv files if they don't already exist.

Docker usage

  • Requires Docker 17.09.0+ and docker-compose 1.17.0+
  • Run docker-compose up backend to generate csv files and start the backend sever.

Frontend

There's also a JavaScript web app that shows some data visualizations.

Local usage

Start the local server. This server will generate the csv files if they don't already exist.

cd back
python wsgi.py

Then, launch the client

cd front
cp .env.example .env
npm install
npm run serve

You can change the env variables if you need to

Docker usage

  • Requires Docker 17.09.0+ and docker-compose 1.17.0+
  • Run docker-compose up frontend and navigate to http://localhost:8080/. This requires the backend server to already be running. If the backend is not running, run docker-compose up to start both services.

Ticker Symbol API - EOD Historical Data

Included for potential future use is a csv file that contains all the listed ticker symbols for stocks, ETFs, and mutual funds (~50,000 tickers). This was retrieved from https://eodhistoricaldata.com/. You can register for a free api key and get up to 20 api calls every 24 hours.

To retrieve a csv of all USA ticker symbols, use the following:

https://eodhistoricaldata.com/api/exchange-symbol-list/US?api_token={YOUR_API_KEY}

Contribution

I would love to see more work done on this, I think this could be something very useful at some point. All contributions are welcome. Go ahead and open a PR.

  • Join the Discord to discuss development and suggestions.

To Do

See this page.

Suggestions are appreciated.

Donation

If you like what I am doing, consider buying me a coffee this helps me give more time to this project and improve.

Buy Me A Coffee


If you decide to use this anywhere please give a credit to @abbasmdj on twitter, also If you like my work, check out other projects on my Github and my personal blog.

About

Fetch currently trending stocks on Reddit

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 47.1%
  • Vue 26.5%
  • TypeScript 16.7%
  • Dockerfile 5.1%
  • HTML 3.9%
  • JavaScript 0.5%
  • Shell 0.2%