Files
trading/ai-gen-strat/README.md

462 B

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...