35 lines
1.2 KiB
Markdown
35 lines
1.2 KiB
Markdown
|
|
# Bill & Colette — Trading Project
|
||
|
|
|
||
|
|
## Goal
|
||
|
|
Learn to trade systematically, build a proven strategy, and pass a prop firm challenge.
|
||
|
|
|
||
|
|
## Directory Structure
|
||
|
|
|
||
|
|
```
|
||
|
|
~/trading/
|
||
|
|
├── README.md ← you are here
|
||
|
|
├── shared/
|
||
|
|
│ ├── ROADMAP.md ← timeline and prop firm options
|
||
|
|
│ ├── curriculum/
|
||
|
|
│ │ └── README.md ← full phase-by-phase learning plan
|
||
|
|
│ ├── sprints/
|
||
|
|
│ │ └── sprint-01.md ← current sprint tasks
|
||
|
|
│ └── resources/ ← links, PDFs, reference material
|
||
|
|
├── bill/
|
||
|
|
│ ├── journal/ ← trade log (copy template.md per trade)
|
||
|
|
│ ├── backtests/ ← backtest results and notes
|
||
|
|
│ ├── watchlists/ ← saved tickers and setups
|
||
|
|
│ ├── notes/ ← learning notes
|
||
|
|
│ └── scripts/ ← Pine Script / Python scripts
|
||
|
|
└── colette/
|
||
|
|
├── journal/ ← trade log
|
||
|
|
├── backtests/
|
||
|
|
├── watchlists/
|
||
|
|
└── notes/
|
||
|
|
```
|
||
|
|
|
||
|
|
## Where to Start
|
||
|
|
1. Read [shared/ROADMAP.md](shared/ROADMAP.md)
|
||
|
|
2. Open [shared/sprints/sprint-01.md](shared/sprints/sprint-01.md)
|
||
|
|
3. Work through Sprint 01 tasks together
|