An open API service indexing awesome lists of open source software.

https://github.com/devradheee/stock-market-prediction-model

This project is a web application built with Streamlit that provides stock price predictions using the Prophet model. Users can select a stock and the number of years for prediction, and view both raw data and forecasted prices in interactive plots.
https://github.com/devradheee/stock-market-prediction-model

numpy plotly prompt python streamlit

Last synced: about 1 month ago
JSON representation

This project is a web application built with Streamlit that provides stock price predictions using the Prophet model. Users can select a stock and the number of years for prediction, and view both raw data and forecasted prices in interactive plots.

Awesome Lists containing this project

README

          

# Predict Stock Prices with Python
Simple application for predicting stock prices using python.
Data collected from Yahoo finance, visualized in Streamlit.
Predictions made with Facebook Prophet

## Setup
Clone repo
```shell
git clone git@github.com:devradheee/stockpredictor-streamlit.git
cd stockpredictor-streamlit
```

Install dependencies
```shell
poetry install
```

Run
```shell
poetry shell
poetry run streamlit run main.py
```

## TODO
- [ ] Query any stock price (add more stocks) from Yahoo Finance
- [ ] Integrate or expand with `freqtrade` python API
- [ ] Add permanent storage with Postgres
- [ ] Add cashe storage with Redis
- [ ] Add users
- [ ] Extend UI to Svelte + TailwindCSS