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

https://github.com/amey-thakur/optimizing-stock-trading-strategy-with-reinforcement-learning

https://youtu.be/Q82a93hjxJE
https://github.com/amey-thakur/optimizing-stock-trading-strategy-with-reinforcement-learning

amey ameythakur data-science data-science-projects machine-learning project python quantitative-finance stock-market stock-price-prediction stock-trading technocolab

Last synced: 5 days ago
JSON representation

https://youtu.be/Q82a93hjxJE

Awesome Lists containing this project

README

          

````markdown
# OPTIMIZING-STOCK-TRADING-STRATEGY-WITH-REINFORCEMENT-LEARNING

πŸ‘‰πŸ» **This project was a part of my Data Science Internship at Technocolabs Softwares.**

> **[Try The Web Application!](https://stock-trading-with-rl.herokuapp.com)**

---

## πŸš€ Getting Started

### 1. Clone the Repository
```bash
git clone https://github.com/Hmati/OPTIMIZING-STOCK-TRADING-STRATEGY-WITH-REINFORCEMENT-LEARNING.git
cd OPTIMIZING-STOCK-TRADING-STRATEGY-WITH-REINFORCEMENT-LEARNING
````

### 2. Install Dependencies

It’s recommended to use a virtual environment.

```bash
pip install -r requirements.txt
```

### 3. Add Dataset

Place the dataset inside a `data/` folder in the project:

```
OPTIMIZING-STOCK-TRADING-STRATEGY-WITH-REINFORCEMENT-LEARNING/
β”‚
β”œβ”€β”€ data/
β”‚ └── all_stocks_5yr.csv
β”œβ”€β”€ README.md
β”œβ”€β”€ your_code.py
```

Or update your script like this:

```python
import pandas as pd
df = pd.read_csv("data/all_stocks_5yr.csv")
print("Done")
```

### 4. Run Example

```bash
python your_script.py
```

---

## 🀝 Contributing

We welcome contributions! To contribute:

1. **Fork** the repository on GitHub.
2. **Clone** your fork:

```bash
git clone https://github.com/your-username/OPTIMIZING-STOCK-TRADING-STRATEGY-WITH-REINFORCEMENT-LEARNING.git
```
3. **Create a branch** for your changes:

```bash
git checkout -b feature/my-improvement
```
4. **Make changes** (e.g., update code, fix bugs, or improve docs).
5. **Commit** your changes:

```bash
git add .
git commit -m "docs: improve README setup instructions"
```
6. **Push** your branch:

```bash
git push origin feature/my-improvement
```
7. **Open a Pull Request** on GitHub. πŸŽ‰

---

## πŸ“‚ Project Resources

* **Data Science Internship Project Work**

* **[Dataset](https://github.com/Amey-Thakur/OPTIMIZING-STOCK-TRADING-STRATEGY-WITH-REINFORCEMENT-LEARNING/blob/main/all_stocks_5yr.csv)**
* **[Blueprint](https://github.com/Amey-Thakur/OPTIMIZING-STOCK-TRADING-STRATEGY-WITH-REINFORCEMENT-LEARNING/blob/main/AMEY%20THAKUR%20-%20BLUEPRINT.pdf)**
* **[Exploratory Data Analysis](https://www.kaggle.com/ameythakur20/exploratory-data-analysis)**
* **[Stock Price Prediction Model](https://www.kaggle.com/ameythakur20/stock-price-prediction-model)**
* **[Project Report](https://github.com/Amey-Thakur/OPTIMIZING-STOCK-TRADING-STRATEGY-WITH-REINFORCEMENT-LEARNING/blob/main/PROJECT%20REPORT.pdf)**
* **[Project Demo](https://youtu.be/Q82a93hjxJE)**
* **[Web Application](https://stock-trading-with-rl.herokuapp.com)**

---

## πŸ›οΈ Technocolabs Softwares - Data Science Internship

* **Kaggle**: [EDA](https://www.kaggle.com/ameythakur20/exploratory-data-analysis) | [Model](https://www.kaggle.com/ameythakur20/stock-price-prediction-model) | [Dataset](https://www.kaggle.com/ameythakur20/stock-prices)
* **LinkedIn Posts**: [Certificate of Internship](https://www.linkedin.com/posts/amey-thakur_internship-completion-letter-activity-6846362264937881601-dmoR) | [Project Completion Letter](https://www.linkedin.com/posts/amey-thakur_project-completion-letter-activity-6846363069258579968-EqzC) | [Letter of Recommendation](https://www.linkedin.com/posts/amey-thakur_letter-of-recommendation-activity-6846363513561214976-pqqt)
* **[ResearchGate](http://dx.doi.org/10.13140/RG.2.2.13054.05440)**

---

> **WEB APPLICATION - [https://stock-trading-with-rl.herokuapp.com](https://stock-trading-with-rl.herokuapp.com)**

![image](https://user-images.githubusercontent.com/54937357/133926554-433535a5-b4bb-4321-9aaf-f1b1f32da567.png)

![image](https://user-images.githubusercontent.com/54937357/133926561-833f79e0-73c4-487f-a122-cd520826c8fb.png)

![image](https://user-images.githubusercontent.com/54937357/133926571-39ed380b-4a5f-4857-8a65-189ebb75d713.png)

![image](https://user-images.githubusercontent.com/54937357/133926579-e79fcb8e-8e00-4cc2-b7ec-0f6883bdea89.png)

---

πŸ‘‰πŸ» Presented as a part of the Internship @ Technocolabs Softwares πŸ‘ˆπŸ»

✌🏻 Back To Repository ✌🏻


```