Skip to content

Commit 64cf136

Browse files
lev-corruptedclaude
andcommitted
Fix documentation links after repository reorganization
## Changes - Updated CHANGELOG.md to reference docs/releases/ for improvement docs - Updated docs/GITHUB_REPO_INFO.md with correct relative paths - Updated docs/PROJECT_SUMMARY.md to reflect new folder structure - Updated examples/pine-scripts/README.md folder name reference ## Details All references to: - `TradingViewPineStrats/` → `examples/pine-scripts/` - `IMPROVEMENTS_*.md` → `docs/releases/IMPROVEMENTS_*.md` - Fixed relative paths in documentation tables Ensures all documentation links work correctly after the reorganization. 🤖 Generated with Claude Code https://claude.com/claude-code Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 3eacfb7 commit 64cf136

4 files changed

Lines changed: 30 additions & 27 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ This release transforms TradingViewMCPServer into a **production-grade, enterpri
9292
- `docker-compose.yml` - Docker Compose config
9393
- `.dockerignore` - Build optimization
9494
- `.github/workflows/test.yml` - CI/CD pipeline
95-
- `IMPROVEMENTS_v3.4.0.md` - Detailed release notes
95+
- `docs/releases/IMPROVEMENTS_v3.4.0.md` - Detailed release notes
9696

9797
### ⚠️ Breaking Changes
9898

@@ -211,7 +211,7 @@ This release adds **complete Pine Script v6 support** with all features verified
211211
- **docs/** folder created for better organization
212212
- **MCP_SETUP_GUIDE.md** - Comprehensive MCP configuration guide
213213
- **V6_VERIFIED_FEATURES.md** - Official TradingView docs verification
214-
- **TradingViewPineStrats/** folder for organizing strategies
214+
- **examples/pine-scripts/** folder for organizing strategies
215215
- indicators/
216216
- strategies/
217217
- overlays/
@@ -258,7 +258,7 @@ This release adds **complete Pine Script v6 support** with all features verified
258258
- **docs/MCP_SETUP.md** - MCP server configuration guide
259259
- **docs/QUICK_START.md** - Project quick start guide
260260
- **V6_VERIFIED_FEATURES.md** - Detailed v6 verification report
261-
- **TradingViewPineStrats/README.md** - Strategy organization guide
261+
- **examples/pine-scripts/README.md** - Strategy organization guide
262262

263263
#### Removed Files (Consolidated)
264264
- ❌ FIXES_SUMMARY.md → Merged into CHANGELOG.md

docs/GITHUB_REPO_INFO.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,9 +136,9 @@ pip install -e .
136136
```
137137

138138
### Documentation
139-
- [README.md](README.md) - Main documentation
140-
- [IMPROVEMENTS_v3.4.0.md](IMPROVEMENTS_v3.4.0.md) - Detailed improvements
141-
- [ARCHITECTURE.md](docs/ARCHITECTURE.md) - Architecture guide
139+
- [README.md](../README.md) - Main documentation
140+
- [IMPROVEMENTS_v3.4.0.md](releases/IMPROVEMENTS_v3.4.0.md) - Detailed improvements
141+
- [ARCHITECTURE.md](ARCHITECTURE.md) - Architecture guide
142142
```
143143

144144
## GitHub Actions Badge URLs

docs/PROJECT_SUMMARY.md

Lines changed: 23 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -19,29 +19,31 @@
1919
```
2020
TradingViewMCPServer/
2121
├── README.md # Main documentation - Start here!
22-
├── PINE_SCRIPT.md # Pine Script tools guide
23-
├── ARCHITECTURE.md # Architecture details
2422
├── CHANGELOG.md # Version history (consolidated)
25-
├── V3.1_IMPROVEMENTS.md # Latest improvements summary
26-
├── CONTRIBUTING.md # How to contribute
27-
└── TradingViewPineStrats/ # Your Pine Script strategies
28-
├── README.md # Strategy folder guide
29-
├── indicators/ # Custom indicators
30-
├── strategies/ # Trading strategies
31-
├── overlays/ # Chart overlays
32-
└── examples/ # Example scripts
23+
├── docs/ # Documentation
24+
│ ├── ARCHITECTURE.md # Architecture details
25+
│ ├── CONTRIBUTING.md # How to contribute
26+
│ ├── guides/ # Usage guides
27+
│ └── releases/ # Release notes
28+
└── examples/ # Example code
29+
└── pine-scripts/ # Pine Script strategies
30+
├── README.md # Strategy folder guide
31+
├── indicators/ # Custom indicators
32+
├── strategies/ # Trading strategies
33+
├── overlays/ # Chart overlays
34+
└── examples/ # Example scripts
3335
```
3436

3537
### Key Documentation
3638

3739
| Document | Purpose | When to Use |
3840
|----------|---------|-------------|
39-
| [README.md](README.md) | Main documentation, features, installation | First time setup, feature overview |
40-
| [PINE_SCRIPT.md](PINE_SCRIPT.md) | Pine Script tools guide | Developing Pine Script code |
41+
| [README.md](../README.md) | Main documentation, features, installation | First time setup, feature overview |
4142
| [ARCHITECTURE.md](ARCHITECTURE.md) | Project structure, design | Understanding codebase, contributing |
42-
| [CHANGELOG.md](CHANGELOG.md) | Version history | See what's new, migration |
43-
| [V3.1_IMPROVEMENTS.md](V3.1_IMPROVEMENTS.md) | Latest changes detail | Understanding v3.1 updates |
44-
| [TradingViewPineStrats/README.md](TradingViewPineStrats/README.md) | Strategy organization | Storing your Pine Script code |
43+
| [CHANGELOG.md](../CHANGELOG.md) | Version history | See what's new, migration |
44+
| [guides/PINE_SCRIPT.md](guides/PINE_SCRIPT.md) | Pine Script tools guide | Developing Pine Script code |
45+
| [releases/](releases/) | Version release notes | Understanding specific version updates |
46+
| [examples/pine-scripts/README.md](../examples/pine-scripts/README.md) | Strategy organization | Storing your Pine Script code |
4547

4648
---
4749

@@ -119,11 +121,12 @@ TradingViewMCPServer/
119121
│ ├── versions.py # Version tools
120122
│ └── autocomplete.py # Code completion
121123
122-
├── TradingViewPineStrats/ # Your Pine Script strategies
123-
│ ├── indicators/
124-
│ ├── strategies/
125-
│ ├── overlays/
126-
│ └── examples/
124+
├── examples/ # Example code
125+
│ └── pine-scripts/ # Pine Script strategies
126+
│ ├── indicators/
127+
│ ├── strategies/
128+
│ ├── overlays/
129+
│ └── examples/
127130
128131
├── tests/ # Test suite
129132
│ ├── test_cache.py

examples/pine-scripts/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This folder contains Pine Script strategies, indicators, and overlays developed
55
## 📁 Folder Structure
66

77
```
8-
TradingViewPineStrats/
8+
examples/pine-scripts/
99
├── indicators/ # Technical indicators
1010
├── strategies/ # Trading strategies
1111
├── overlays/ # Chart overlays (S/R, patterns, etc.)

0 commit comments

Comments
 (0)