Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 29 additions & 19 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -46,22 +46,32 @@ out/
.DS_Store
Thumbs.db


# Java
*.class
*.jar
*.war
*.log

# IntelliJ IDEA
.idea/
*.iml
out/

# VS Code
.vscode/

# OS junk
.DS_Store
Thumbs.db

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
.pytest_cache/
.coverage
htmlcov/
.env
venv/
env/
ENV/
23 changes: 19 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,32 @@ The goal is to improve problem-solving skills, write clean and efficient code, a
---

## 📌 Repository Structure
- `problems/` → All solved problems organized by topic (Arrays, Strings, DP, etc.)
- `notes/` → Topic-wise learning notes, explanations, and approaches
- `src/` → Java DSA implementations (Arrays, Stacks, Payment System, etc.)
- `trading_strategy/` → **Python Trading Strategy Implementation** 📈
- Complete RSI Pullback swing trading strategy
- Backtesting engine with performance analysis
- See [trading_strategy/README.md](trading_strategy/README.md) for details
- `README.md` → Project documentation
- `.gitignore` → To avoid committing unnecessary files
- `LICENSE` → Open-source license

---

## 🛠️ Tech Stack
- **Java (Spring Boot background, DSA in Java for interviews)**
- **Python (ML/extra practice)**
- **Python (ML/Data Science & Trading Strategies)**

---

## 📈 Featured Project: RSI Pullback Trading Strategy

A complete Python implementation of a professional swing trading strategy with:
- Technical indicators (EMA, RSI, ATR)
- Entry/Exit signal detection
- Risk management and position sizing
- Backtesting engine with performance metrics
- Live signal scanner

👉 **[View Trading Strategy Documentation](trading_strategy/README.md)**

---

Expand Down
Loading