12 lines
462 B
Markdown
12 lines
462 B
Markdown
There should be a folder per strategy with following elements:
|
|
|
|
```
|
|
│ ├── strategy-001/ # Each strategy in its own directory
|
|
│ │ ├── prompt.md # The detailed prompt used
|
|
│ │ ├── strategy.pine # Generated PineScript code
|
|
│ │ ├── results.json # Backtest results file (JSON?)
|
|
│ │ └── README.md # Strategy description and summary
|
|
│ └── strategy-002...
|
|
|
|
```
|