|
19 | 19 | ``` |
20 | 20 | TradingViewMCPServer/ |
21 | 21 | ├── README.md # Main documentation - Start here! |
22 | | -├── PINE_SCRIPT.md # Pine Script tools guide |
23 | | -├── ARCHITECTURE.md # Architecture details |
24 | 22 | ├── 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 |
33 | 35 | ``` |
34 | 36 |
|
35 | 37 | ### Key Documentation |
36 | 38 |
|
37 | 39 | | Document | Purpose | When to Use | |
38 | 40 | |----------|---------|-------------| |
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 | |
41 | 42 | | [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 | |
45 | 47 |
|
46 | 48 | --- |
47 | 49 |
|
@@ -119,11 +121,12 @@ TradingViewMCPServer/ |
119 | 121 | │ ├── versions.py # Version tools |
120 | 122 | │ └── autocomplete.py # Code completion |
121 | 123 | │ |
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/ |
127 | 130 | │ |
128 | 131 | ├── tests/ # Test suite |
129 | 132 | │ ├── test_cache.py |
|
0 commit comments