What problem does it solve?
Validating a trading strategy against historical data and proving the backtest result was not tampered with before promoting it from paper to live trading is error-prone when done manually. This Skill automates the backtest run, deduplicates prior results, and cryptographically signs the artifact so downstream promotion gates can verify integrity.
Core Features & Use Cases
- Historical Backtesting: Runs strategies via the neural-trader Rust/NAPI engine with walk-forward validation and captures metrics like Sharpe ratio, max drawdown, and profit factor.
- Tamper-Evident Artifacts: Ed25519-signs each backtest result (paramsHash, runsHash, metrics) so the paper-to-live promotion gate can verify authenticity per ADR-126.
- Result Lifecycle Management: Deduplicates prior backtests for the same strategy and parameters, stores artifacts in a memory namespace, and trains SONA on outcomes.
- Use Case: Run a multi-indicator strategy with Kelly position sizing on SPY from 2020-2024, then store a signed artifact that trader-cloud-backtest can verify before live promotion.
Quick Start
Run a backtest for my multi-indicator strategy on SPY covering 2020-2024 and sign the result for promotion review.