From f2b301daea8923da4189127c899c11ef1227949b Mon Sep 17 00:00:00 2001 From: jpwysocz Date: Fri, 28 Feb 2025 15:44:24 -0800 Subject: [PATCH] Add strategy structure template with README --- desc-strat/README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 desc-strat/README.md diff --git a/desc-strat/README.md b/desc-strat/README.md new file mode 100644 index 0000000..c92ab0e --- /dev/null +++ b/desc-strat/README.md @@ -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... + +```