Workflow
- Requirements parsing: parse user intent, extract instrument codes, time range, and strategy logic, then write
config.json
- Strategy design: think through the 5 questions of data / signal / position sizing / backtest / validation
- Strategy coding: write
code/signal_engine.py (following the SignalEngine contract)
- Syntax check:
bash("python -c \"import ast; ast.parse(open('code/signal_engine.py').read()); print('OK')\"")
- Run backtest: call the
backtest tool (built into the engine; no need to write run_backtest.py)
- Evaluate results: read
artifacts/metrics.csv and judge by the review criteria
- Iterative fixing: if results are poor, modify with
edit_file → run backtest → re-evaluate
You only need to write signal_engine.py and config.json. The backtest tool automatically handles data loading and backtest execution.
Requirements Parsing
Extract the following from the user's description:
- Instrument codes: process them according to the normalization rules below
- Time range: if the user does not specify dates, default to 10 years back from today (for example, if today is
2026-03-18, then start_date=2016-03-18, end_date=2026-03-18)
- Indicator warm-up: a long lookback (MA200, a 252-day z-score) needs bars from before the requested period. Move
start_date back to load them and declare the boundary with warmup_bars — the requested period is what gets graded, and undeclared warm-up bars are graded too. Silently backdating start_date by a year turns a 10-year backtest into an 11-year one that still calls itself 10 years: the extra year's trades, CAGR and benchmark all enter the report, the run succeeds, and the numbers look internally consistent
- Strategy logic: entry / exit conditions and indicator parameters
If critical information is missing, you must ask the user instead of guessing:
- Instrument not specified → ask which instrument they want to backtest (offer several popular suggestions)
- Strategy description is vague (for example, "help me build a strategy") → provide 2-3 strategy directions for the user to choose from
- Mixed markets but not clearly specified → confirm the data source
Write config.json first, then write code. config.json must be placed in the root of run_dir.
Strategy Design
Before writing code, think through these 5 questions:
- Data requirements: what fields are needed (basic OHLCV only, daily valuation fields such as
pe/pb/roe, or statement fields such as income_total_revenue / fina_indicator_roe?), data frequency (daily), and market (which determines the data source)
- Signal logic: what are the entry conditions? What are the exit conditions? Direction (long / short / long-short)? Are there filters (volume, trend confirmation, and so on)?
- Position management: equal-weight allocation or scaling in/out? Risk control (stop-loss, maximum position)? In portfolio strategies, once top N names are selected, each weight = 1/N
- Backtest parameters: time range, initial capital (default 1,000,000), commission (default 0.1%)
- Validation checklist: signal consistency (no NaN signals), position check (normalized to prevent leverage), and completeness of generated artifacts
There is no need to output a JSON design document. Express these design decisions directly in code.
SignalEngine Contract
class SignalEngine:
def generate(self, data_map: Dict[str, pd.DataFrame]) -> Dict[str, pd.Series]:
"""
Args:
data_map: code -> DataFrame (columns: open, high, low, close, volume, DatetimeIndex)
If config.extra_fields is specified, pe, pb, roe, and similar daily_basic columns will also be present.
If config.fundamental_fields is specified, PIT-safe statement columns such as
income_total_revenue, income_n_income, and fina_indicator_roe will also be present.
Returns:
code -> signal Series, value range [-1.0, 1.0]
1.0 = fully long, 0.5 = half position, 0.0 = flat, -1.0 = fully short
Portfolio strategy: selected stocks split weights equally (for example top 10 -> each 0.1)
Legacy integer signals {-1, 0, 1} remain compatible (treated as -100% / 0% / 100%)
"""
Hard constraints:
- The signal
Series index must align exactly with the input DataFrame index
- Include all required imports (
numpy, pandas, and so on)
- Do not hardcode dates or stock codes (read them from
config.json)
- Do not include an
if __name__ == "__main__" block
- Pure pandas / numpy implementation, with no external signal libraries
- Output plain Python code, not Markdown fences
Quality Checklist
Self-check after writing signal_engine.py:
Instrument Code Normalization
- 6-digit China A-share codes → automatically append suffix: codes starting with
600/601/603 → .SH, all others → .SZ
- US stocks: uppercase letters +
.US, such as AAPL.US (yfinance converts automatically)
- Hong Kong stocks: digits +
.HK, such as 700.HK (yfinance converts automatically)
- Canadian stocks: Yahoo ticker +
.TO for TSX or .V for TSXV, such as TD.TO or PNG.V
- Cryptocurrencies:
BTC-USDT format (OKX spot pairs, must use the hyphen -, not slash /)
- The user may write
BTC/USDT, but config.json must use "BTC-USDT"
Cryptocurrency Notes
- Code format: must be
XXX-USDT (uppercase + hyphen), such as BTC-USDT and ETH-USDT
- source: must be set to
"okx"
- extra_fields: must be
null (OKX does not support fundamentals)
- Data format:
DataLoader has already normalized the output to match China A-shares exactly: open, high, low, close, volume + DatetimeIndex
- No special handling needed in strategy code:
signal_engine.py should be written the same way as for China A-shares; do not add extra data conversion for OKX
Market Detection and Data Sources
| Pattern |
Market |
source |
Extra Fields |
^\d{6}\.(SZ|SH|BJ)$ |
China A-shares |
tushare |
extra_fields: pe, pb, pe_ttm, ps_ttm, dv_ttm, total_mv, circ_mv, roe; fundamental_fields: income/balancesheet/cashflow/fina_indicator |
^[A-Z]+\.US$ |
US stocks |
yfinance |
- |
^\d{3,5}\.HK$ |
Hong Kong stocks |
yfinance |
- |
^[A-Z0-9&.-]+\.(TO|V)$ |
Canadian stocks (TSX / TSXV) |
yahoo / yfinance |
- |
^[A-Z]+-USDT$ |
Cryptocurrency |
okx |
- |
extra_fields selection logic: only China A-shares (tushare) support daily valuation fields. If the strategy needs PE/PB/ROE and similar daily_basic fields, specify them in config.json.extra_fields and DataLoader will retrieve them automatically. Hong Kong, US, Canadian stocks, and crypto do not support extra_fields.
fundamental_fields selection logic: use this for China A-share financial statement pre-filters. The runner queries income, balancesheet, cashflow, and/or fina_indicator through the Tushare fundamental provider, then merges rows into daily bars only after their announcement/disclosure date. Output columns are prefixed by table name, for example income_total_revenue, income_n_income, balancesheet_total_hldr_eqy_exc_min_int, and fina_indicator_roe. Daily frames only: an announcement date carries no time of day, so on an intraday frame a filing would be visible from the first bar of its own announcement day. A sub-daily interval plus fundamental_fields is rejected outright; set "fundamental_subdaily": "next_day" to run it anyway under the conservative rule that day D's announcement becomes visible at the first bar of D+1.
config.json Format
{
"source": "auto",
"codes": ["000001.SZ"],
"start_date": "2016-03-18",
"end_date": "2026-03-18",
"warmup_bars": 0,
"interval": "1D",
"initial_cash": 1000000,
"commission": 0.001,
"extra_fields": null,
"fundamental_fields": null,
"optimizer": null,
"optimizer_params": {},
"engine": "daily",
"position_adjustment": "rebalance",
"rebalance_mask": null,
"rebalance_tolerance": 0.05,
"validation": null
}
source: "auto" (recommended, auto-select by code format) / "tushare" / "yfinance" / "okx" / "akshare" / "ccxt"
"auto" supports mixed instruments. For example, ["000001.SZ", "BTC-USDT"] will be automatically routed to tushare and okx
- Futures codes (e.g.
"IF2406.CFFEX", "ESZ4") and forex pairs (e.g. "EUR/USD") are also auto-routed
interval: candlestick interval, default "1D". Supported values: "1m" / "5m" / "15m" / "30m" / "1H" / "4H" / "1D"
- The annualization factor for minute backtests is inferred automatically from
source (252 trading days for China A-shares, 365 calendar days for crypto)
- Minute backtests can be very data-heavy. Recommended limits are no more than 30 days for
1m, or 1 year for 1H
warmup_bars: how many leading bars exist only to prime the indicators. They are loaded and fed to SignalEngine.generate(), then excluded from trades, the equity curve, the benchmark and every metric. Default 0 grades the whole loaded window.
- Use it whenever you widen
start_date for an indicator's lookback. start_date is the data window; start_date plus warmup_bars is the evaluation window, and the report describes the second one.
- Size it from the longest lookback in the strategy, plus a margin: MA200 needs at least 200 daily bars, a 252-day rolling z-score needs 252. Then set
start_date far enough back to supply them.
evaluation_start_date ("YYYY-MM-DD") is the same instruction stated as a date, for when the user names the period rather than the lookback. Declare one or the other — declaring both is rejected.
extra_fields: China A-shares can use values such as ["pe", "pb", "roe"]; other markets should use null
fundamental_fields: optional China A-share statement fields, such as {"income": ["total_revenue", "n_income"], "fina_indicator": ["roe"]}; use null unless the strategy needs financial statement pre-filtering
optimizer: optional, one of "equal_volatility" / "risk_parity" / "mean_variance" / "max_diversification" / "turnover_aware" / null (equal-weight by default)
optimizer_params: optimizer parameters, such as {"lookback": 60}. mean_variance additionally supports {"risk_free": 0.0}; turnover_aware supports {"risk_aversion": 1.0, "turnover_penalty": 0.5} (L1 penalty on weight changes; tune to data frequency)
engine: backtest engine, default "daily". For options strategies, set "options" (requires OptionsSignalEngine)
position_adjustment: always state this explicitly — the two modes produce different books from the same signals, and neither is right for every strategy.
"rebalance" executes every target change with market fills and weighted-average entry accounting. It also re-sizes whenever the held weight has drifted from the target, and a strategy restates its target on every bar, so a constant target means a fill on every bar: measured on a 40-bar rising series, a constant 20% target produced 40 fills instead of 1, with the fees, slippage and transaction taxes that follow. Use rebalance_mask when the strategy has its own execution cadence.
"hold" keeps a same-direction position until it exits or reverses, so the weight drifts with price and a requested resize is not executed. Dropped requests are counted in the report as dropped_target_adjustment_count, with the first twenty listed, so a rebalance count that does not match the trade log is explained rather than silent.
- Rule of thumb:
"rebalance" when the target weight itself carries the strategy (optimizers, risk budgets, continuous scaling); "hold" when entries and exits carry it and the weight in between is incidental.
rebalance_mask: optional execution schedule used only under "rebalance". Use a pandas offset alias such as "MS", "W-FRI", or "QS", or an explicit ISO-date list such as ["2026-01-02", "2026-02-02"]. Each period/date selects the first aligned trading bar on or after it; ordinary bars HOLD even when the dense target is zero. An alias must not be finer than the aligned bar interval; W-FRI starts a Friday-anchored period and normally executes on the following Monday. Omit it to preserve every-bar execution. Do not combine it with "hold".
rebalance_tolerance: drift band around the target, as a fraction of it, used only under "rebalance". A resize executes once the held weight has moved further than this from its target; a changed target breaches any sane band on its own, so target changes always execute. Default 0.0 means no band, and then the resize test is decided by the slippage width alone — measured on a constant 20% target over 60 bars, 0.0 produced 60 fills, 0.02 produced 12, and 0.05 produced 5 while the weight never left 0.21. Use rebalance_mask, not tolerance, to express a strategy's execution cadence. 0.05 is a reasonable starting point, not a recommendation with evidence behind it — it is your modelling choice and the report records the value the run used.
initial_cash: default 1,000,000
commission: default 0.1%
validation: optional statistical validation after backtest completes. Omit to skip. Example:"validation": {
"monte_carlo": {"n_simulations": 1000},
"bootstrap": {"n_bootstrap": 1000, "confidence": 0.95},
"walk_forward": {"n_windows": 5}
}
monte_carlo: permutation test — shuffles trade order to compute p-value (is Sharpe significantly better than random?)
bootstrap: resamples daily returns to compute Sharpe 95% confidence interval
walk_forward: splits equity curve into N windows, checks performance consistency
- Each key is optional — include only the validations you want
- Can also run standalone on past results:
python -m backtest.validation <run_dir>
Review Criteria
Hard Gates (any failure → passed=false)
artifacts/metrics.csv exists and is non-empty
artifacts/equity.csv exists and is non-empty
exit_code == 0 (backtest exits normally)
- The
equity column in equity.csv contains no NaN values
trade_count > 0 (zero trades = signal bug)
Scoring Rules
- Successful backtest + complete artifacts + at least 1 trade →
score ≥ 60 → passed
- Poor return / low Sharpe alone should not push the score below 60; they are optimization suggestions only
score ≥ 60 = passed=true
Bug Categories (reduce the score)
- Zero trades (
trade_count=0): signal-logic bug, conditions may be too strict
- Late first trade (first trade > 2 years after backtest start): data-filtering bug or overly long lookback window
- Capital utilization < 50%: position-management bug, portfolio is flat most of the time
- Open position at the end (positions still open when backtest ends): exit-signal timing bug
action_items Format
If improvements are needed after evaluation, write action_items:
- Format:
"Change X from A to B" or "Add X logic in signal_engine.py"
- Must be specific down to parameter values, file names, and function names
- At least 2 items
- Examples:
"Change short MA from 5 to 10 days to reduce whipsaw signals"
"Add stop-loss: force close when loss exceeds 5%"
"Add volume filter in signal_engine.py: only trigger buy on high volume"
Cross-Market Strategies
When the user requests a backtest with codes from different markets (e.g. ["000001.SZ", "BTC-USDT"]):
- Set
source: "auto" in config.json
- The
CompositeEngine handles calendar alignment, shared capital, and per-market rules automatically
- Use volatility-adjusted weights so high-vol assets (crypto) don't dominate the risk budget
- See the cross-market-strategy skill for per-market parameters, vol-adjustment, and example code
Supporting Files
- examples.md — example call sequence
1---2name: strategy-generate3description: Create, modify, and optimize quantitative trading strategies, then backtest and evaluate them.4---5
6## Workflow
7
81. **Requirements parsing**: parse user intent, extract instrument codes, time range, and strategy logic, then write `config.json`
92. **Strategy design**: think through the 5 questions of data / signal / position sizing / backtest / validation
103. **Strategy coding**: write `code/signal_engine.py` (following the `SignalEngine` contract)
114. **Syntax check**: `bash("python -c \"import ast; ast.parse(open('code/signal_engine.py').read()); print('OK')\"")`
125. **Run backtest**: call the `backtest` tool (built into the engine; no need to write `run_backtest.py`)
136. **Evaluate results**: read `artifacts/metrics.csv` and judge by the review criteria
147. **Iterative fixing**: if results are poor, modify with `edit_file` → run `backtest` → re-evaluate
15
16**You only need to write `signal_engine.py` and `config.json`. The `backtest` tool automatically handles data loading and backtest execution.**
17
18## Requirements Parsing
19
20Extract the following from the user's description:
21- **Instrument codes**: process them according to the normalization rules below
22- **Time range**: if the user does not specify dates, default to **10 years back from today** (for example, if today is `2026-03-18`, then `start_date=2016-03-18`, `end_date=2026-03-18`)
23- **Indicator warm-up**: a long lookback (MA200, a 252-day z-score) needs bars from *before* the requested period. Move `start_date` back to load them **and declare the boundary with `warmup_bars`** — the requested period is what gets graded, and undeclared warm-up bars are graded too. Silently backdating `start_date` by a year turns a 10-year backtest into an 11-year one that still calls itself 10 years: the extra year's trades, CAGR and benchmark all enter the report, the run succeeds, and the numbers look internally consistent
24- **Strategy logic**: entry / exit conditions and indicator parameters
25
26**If critical information is missing, you must ask the user instead of guessing:**
27- Instrument not specified → ask which instrument they want to backtest (offer several popular suggestions)
28- Strategy description is vague (for example, "help me build a strategy") → provide 2-3 strategy directions for the user to choose from
29- Mixed markets but not clearly specified → confirm the data source
30
31**Write `config.json` first, then write code.** `config.json` must be placed in the root of `run_dir`.
32
33## Strategy Design
34
35Before writing code, think through these 5 questions:
36
371. **Data requirements**: what fields are needed (basic OHLCV only, daily valuation fields such as `pe/pb/roe`, or statement fields such as `income_total_revenue` / `fina_indicator_roe`?), data frequency (daily), and market (which determines the data source)
382. **Signal logic**: what are the entry conditions? What are the exit conditions? Direction (long / short / long-short)? Are there filters (volume, trend confirmation, and so on)?
393. **Position management**: equal-weight allocation or scaling in/out? Risk control (stop-loss, maximum position)? In portfolio strategies, once top N names are selected, each weight = 1/N
404. **Backtest parameters**: time range, initial capital (default 1,000,000), commission (default 0.1%)
415. **Validation checklist**: signal consistency (no NaN signals), position check (normalized to prevent leverage), and completeness of generated artifacts
42
43There is no need to output a JSON design document. Express these design decisions directly in code.
44
45## `SignalEngine` Contract
46
47```python
48class SignalEngine:
49 def generate(self, data_map: Dict[str, pd.DataFrame]) -> Dict[str, pd.Series]:
50 """
51 Args:
52 data_map: code -> DataFrame (columns: open, high, low, close, volume, DatetimeIndex)
53 If config.extra_fields is specified, pe, pb, roe, and similar daily_basic columns will also be present.
54 If config.fundamental_fields is specified, PIT-safe statement columns such as
55 income_total_revenue, income_n_income, and fina_indicator_roe will also be present.
56 Returns:
57 code -> signal Series, value range [-1.0, 1.0]
58 1.0 = fully long, 0.5 = half position, 0.0 = flat, -1.0 = fully short
59 Portfolio strategy: selected stocks split weights equally (for example top 10 -> each 0.1)
60 Legacy integer signals {-1, 0, 1} remain compatible (treated as -100% / 0% / 100%)
61 """
62```
63
64**Hard constraints:**
65- The signal `Series` index must align exactly with the input `DataFrame` index
66- Include all required imports (`numpy`, `pandas`, and so on)
67- Do not hardcode dates or stock codes (read them from `config.json`)
68- Do not include an `if __name__ == "__main__"` block
69- Pure pandas / numpy implementation, with no external signal libraries
70- Output plain Python code, not Markdown fences
71
72## Quality Checklist
73
74Self-check after writing `signal_engine.py`:
75- [ ] All imports are included (`numpy`, `pandas`, `typing`, and so on)
76- [ ] No undefined variables
77- [ ] Signal logic is consistent with the strategy description
78- [ ] Boundary handling: for empty data or insufficient history before the lookback window, use `fillna(0)` or skip
79- [ ] Portfolio strategy: once N stocks are selected, each weight = 1/N (for example top 10 → each 0.1), unselected names = 0
80- [ ] Signal values stay within `[-1.0, 1.0]`
81
82## Instrument Code Normalization
83
84- 6-digit China A-share codes → automatically append suffix: codes starting with `600/601/603` → `.SH`, all others → `.SZ`
85- US stocks: uppercase letters + `.US`, such as `AAPL.US` (`yfinance` converts automatically)
86- Hong Kong stocks: digits + `.HK`, such as `700.HK` (`yfinance` converts automatically)
87- Canadian stocks: Yahoo ticker + `.TO` for TSX or `.V` for TSXV, such as `TD.TO` or `PNG.V`
88- Cryptocurrencies: `BTC-USDT` format (OKX spot pairs, **must use the hyphen `-`, not slash `/`**)
89 - The user may write `BTC/USDT`, but `config.json` must use `"BTC-USDT"`
90
91## Cryptocurrency Notes
92
93- **Code format**: must be `XXX-USDT` (uppercase + hyphen), such as `BTC-USDT` and `ETH-USDT`
94- **source**: must be set to `"okx"`
95- **extra_fields**: must be `null` (OKX does not support fundamentals)
96- **Data format**: `DataLoader` has already normalized the output to match China A-shares exactly: `open, high, low, close, volume` + `DatetimeIndex`
97- **No special handling needed in strategy code**: `signal_engine.py` should be written the same way as for China A-shares; do not add extra data conversion for OKX
98
99## Market Detection and Data Sources
100
101| Pattern | Market | source | Extra Fields |
102|------|------|--------|----------|
103| `^\d{6}\.(SZ\|SH\|BJ)$` | China A-shares | tushare | `extra_fields`: pe, pb, pe_ttm, ps_ttm, dv_ttm, total_mv, circ_mv, roe; `fundamental_fields`: income/balancesheet/cashflow/fina_indicator |
104| `^[A-Z]+\.US$` | US stocks | yfinance | - |
105| `^\d{3,5}\.HK$` | Hong Kong stocks | yfinance | - |
106| `^[A-Z0-9&.-]+\.(TO\|V)$` | Canadian stocks (TSX / TSXV) | yahoo / yfinance | - |
107| `^[A-Z]+-USDT$` | Cryptocurrency | okx | - |
108
109**`extra_fields` selection logic**: only China A-shares (`tushare`) support daily valuation fields. If the strategy needs `PE/PB/ROE` and similar daily_basic fields, specify them in `config.json.extra_fields` and `DataLoader` will retrieve them automatically. Hong Kong, US, Canadian stocks, and crypto do not support `extra_fields`.
110
111**`fundamental_fields` selection logic**: use this for China A-share financial statement pre-filters. The runner queries `income`, `balancesheet`, `cashflow`, and/or `fina_indicator` through the Tushare fundamental provider, then merges rows into daily bars only after their announcement/disclosure date. Output columns are prefixed by table name, for example `income_total_revenue`, `income_n_income`, `balancesheet_total_hldr_eqy_exc_min_int`, and `fina_indicator_roe`. **Daily frames only**: an announcement date carries no time of day, so on an intraday frame a filing would be visible from the first bar of its own announcement day. A sub-daily interval plus `fundamental_fields` is rejected outright; set `"fundamental_subdaily": "next_day"` to run it anyway under the conservative rule that day D's announcement becomes visible at the first bar of D+1.
112
113## `config.json` Format
114
115```json
116{
117 "source": "auto",
118 "codes": ["000001.SZ"],
119 "start_date": "2016-03-18",
120 "end_date": "2026-03-18",
121 "warmup_bars": 0,
122 "interval": "1D",
123 "initial_cash": 1000000,
124 "commission": 0.001,
125 "extra_fields": null,
126 "fundamental_fields": null,
127 "optimizer": null,
128 "optimizer_params": {},
129 "engine": "daily",
130 "position_adjustment": "rebalance",
131 "rebalance_mask": null,
132 "rebalance_tolerance": 0.05,
133 "validation": null
134}
135```
136
137- `source`: `"auto"` (recommended, auto-select by code format) / `"tushare"` / `"yfinance"` / `"okx"` / `"akshare"` / `"ccxt"`
138 - `"auto"` supports mixed instruments. For example, `["000001.SZ", "BTC-USDT"]` will be automatically routed to `tushare` and `okx`
139 - Futures codes (e.g. `"IF2406.CFFEX"`, `"ESZ4"`) and forex pairs (e.g. `"EUR/USD"`) are also auto-routed
140- `interval`: candlestick interval, default `"1D"`. Supported values: `"1m"` / `"5m"` / `"15m"` / `"30m"` / `"1H"` / `"4H"` / `"1D"`
141 - The annualization factor for minute backtests is inferred automatically from `source` (252 trading days for China A-shares, 365 calendar days for crypto)
142 - Minute backtests can be very data-heavy. Recommended limits are no more than 30 days for `1m`, or 1 year for `1H`
143- `warmup_bars`: how many leading bars exist only to prime the indicators. They are loaded and fed to `SignalEngine.generate()`, then excluded from trades, the equity curve, the benchmark and every metric. Default `0` grades the whole loaded window.
144 - Use it whenever you widen `start_date` for an indicator's lookback. `start_date` is the **data** window; `start_date` plus `warmup_bars` is the **evaluation** window, and the report describes the second one.
145 - Size it from the longest lookback in the strategy, plus a margin: MA200 needs at least 200 daily bars, a 252-day rolling z-score needs 252. Then set `start_date` far enough back to supply them.
146 - `evaluation_start_date` (`"YYYY-MM-DD"`) is the same instruction stated as a date, for when the user names the period rather than the lookback. Declare one or the other — declaring both is rejected.
147- `extra_fields`: China A-shares can use values such as `["pe", "pb", "roe"]`; other markets should use `null`
148- `fundamental_fields`: optional China A-share statement fields, such as `{"income": ["total_revenue", "n_income"], "fina_indicator": ["roe"]}`; use `null` unless the strategy needs financial statement pre-filtering
149- `optimizer`: optional, one of `"equal_volatility"` / `"risk_parity"` / `"mean_variance"` / `"max_diversification"` / `"turnover_aware"` / `null` (equal-weight by default)
150- `optimizer_params`: optimizer parameters, such as `{"lookback": 60}`. `mean_variance` additionally supports `{"risk_free": 0.0}`; `turnover_aware` supports `{"risk_aversion": 1.0, "turnover_penalty": 0.5}` (L1 penalty on weight changes; tune to data frequency)
151- `engine`: backtest engine, default `"daily"`. For options strategies, set `"options"` (requires `OptionsSignalEngine`)
152- `position_adjustment`: **always state this explicitly** — the two modes produce different books from the same signals, and neither is right for every strategy.
153 - `"rebalance"` executes every target change with market fills and weighted-average entry accounting. It also re-sizes whenever the held weight has drifted from the target, and a strategy restates its target on every bar, so a constant target means a fill on every bar: measured on a 40-bar rising series, a constant 20% target produced **40 fills instead of 1**, with the fees, slippage and transaction taxes that follow. Use `rebalance_mask` when the strategy has its own execution cadence.
154 - `"hold"` keeps a same-direction position until it exits or reverses, so the weight drifts with price and a requested resize is **not executed**. Dropped requests are counted in the report as `dropped_target_adjustment_count`, with the first twenty listed, so a rebalance count that does not match the trade log is explained rather than silent.
155 - Rule of thumb: `"rebalance"` when the target weight itself carries the strategy (optimizers, risk budgets, continuous scaling); `"hold"` when entries and exits carry it and the weight in between is incidental.
156- `rebalance_mask`: optional execution schedule used only under `"rebalance"`. Use a pandas offset alias such as `"MS"`, `"W-FRI"`, or `"QS"`, or an explicit ISO-date list such as `["2026-01-02", "2026-02-02"]`. Each period/date selects the first aligned trading bar on or after it; ordinary bars HOLD even when the dense target is zero. An alias must not be finer than the aligned bar interval; `W-FRI` starts a Friday-anchored period and normally executes on the following Monday. Omit it to preserve every-bar execution. Do not combine it with `"hold"`.
157- `rebalance_tolerance`: drift band around the target, as a fraction of it, used only under `"rebalance"`. A resize executes once the held weight has moved further than this from its target; a **changed** target breaches any sane band on its own, so target changes always execute. Default `0.0` means no band, and then the resize test is decided by the slippage width alone — measured on a constant 20% target over 60 bars, `0.0` produced 60 fills, `0.02` produced 12, and `0.05` produced 5 while the weight never left 0.21. Use `rebalance_mask`, not tolerance, to express a strategy's execution cadence. `0.05` is a reasonable starting point, not a recommendation with evidence behind it — it is your modelling choice and the report records the value the run used.
158- `initial_cash`: default 1,000,000
159- `commission`: default 0.1%
160- `validation`: optional statistical validation after backtest completes. Omit to skip. Example:
161 ```json
162 "validation": {
163 "monte_carlo": {"n_simulations": 1000},
164 "bootstrap": {"n_bootstrap": 1000, "confidence": 0.95},
165 "walk_forward": {"n_windows": 5}
166 }
167 ```
168 - `monte_carlo`: permutation test — shuffles trade order to compute p-value (is Sharpe significantly better than random?)
169 - `bootstrap`: resamples daily returns to compute Sharpe 95% confidence interval
170 - `walk_forward`: splits equity curve into N windows, checks performance consistency
171 - Each key is optional — include only the validations you want
172 - Can also run standalone on past results: `python -m backtest.validation <run_dir>`
173
174## Review Criteria
175
176### Hard Gates (any failure → `passed=false`)
177
1781. `artifacts/metrics.csv` exists and is non-empty
1792. `artifacts/equity.csv` exists and is non-empty
1803. `exit_code == 0` (backtest exits normally)
1814. The `equity` column in `equity.csv` contains no `NaN` values
1825. `trade_count > 0` (zero trades = signal bug)
183
184### Scoring Rules
185
186- Successful backtest + complete artifacts + at least 1 trade → `score ≥ 60` → **passed**
187- Poor return / low Sharpe alone should not push the score below 60; they are optimization suggestions only
188- `score ≥ 60` = `passed=true`
189
190### Bug Categories (reduce the score)
191
1921. **Zero trades** (`trade_count=0`): signal-logic bug, conditions may be too strict
1932. **Late first trade** (first trade > 2 years after backtest start): data-filtering bug or overly long lookback window
1943. **Capital utilization < 50%**: position-management bug, portfolio is flat most of the time
1954. **Open position at the end** (positions still open when backtest ends): exit-signal timing bug
196
197### `action_items` Format
198
199If improvements are needed after evaluation, write `action_items`:
200- Format: `"Change X from A to B"` or `"Add X logic in signal_engine.py"`
201- Must be specific down to parameter values, file names, and function names
202- At least 2 items
203- Examples:
204 - `"Change short MA from 5 to 10 days to reduce whipsaw signals"`
205 - `"Add stop-loss: force close when loss exceeds 5%"`
206 - `"Add volume filter in signal_engine.py: only trigger buy on high volume"`
207
208## Cross-Market Strategies
209
210When the user requests a backtest with codes from **different markets** (e.g. `["000001.SZ", "BTC-USDT"]`):
211- Set `source: "auto"` in `config.json`
212- The `CompositeEngine` handles calendar alignment, shared capital, and per-market rules automatically
213- Use volatility-adjusted weights so high-vol assets (crypto) don't dominate the risk budget
214- See the [cross-market-strategy](../cross-market-strategy/SKILL.md) skill for per-market parameters, vol-adjustment, and example code
215
216## Supporting Files
217
218- [examples.md](examples.md) — example call sequence