Add strategy structure template with README

This commit is contained in:
2025-02-28 15:44:24 -08:00
parent 67f79604ab
commit f2b301daea

11
desc-strat/README.md Normal file
View File

@@ -0,0 +1,11 @@
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...
```