Stats
Actions
Tags
Help us improve
Share bugs, ideas, or general feedback.
From hyrex-neural-trader
Run a historical backtest using npx neural-trader with Rust/NAPI engine (8-19x faster) and walk-forward validation
npx claudepluginhub akhilyad/deployy --plugin hyrex-neural-traderHow this skill is triggered — by the user, by Claude, or both
Slash command
/hyrex-neural-trader:trader-backtest <strategy-name> --symbol <TICKER> [--period 2020-2024]<strategy-name> --symbol <TICKER> [--period 2020-2024]This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Run a historical backtest using the `neural-trader` Rust/NAPI engine.
Guides technical evaluation of code review feedback: read fully, restate for understanding, verify against codebase, respond with reasoning or pushback before implementing.
Share bugs, ideas, or general feedback.
Run a historical backtest using the neural-trader Rust/NAPI engine.
Steps:
npm ls neural-trader 2>/dev/null || npm install neural-tradermcp__hyrex__memory_retrieve({ key: "strategy-STRATEGY_NAME", namespace: "trading-strategies" })
If not found, list available: mcp__hyrex__memory_search({ query: "strategy", namespace: "trading-strategies", limit: 10 })npx neural-trader --backtest --strategy <name> --symbol <TICKER> --period <range> --walk-forward
For multi-indicator strategies:
npx neural-trader --backtest --strategy multi-indicator --position-sizing kelly --symbol SPY --period 2020-2024
mcp__hyrex__memory_store({ key: "backtest-STRATEGY-TIMESTAMP", value: "RESULTS_JSON", namespace: "trading-backtests" })mcp__hyrex__agentdb_pattern-store({ pattern: "profitable-STRATEGY_TYPE", data: "PARAMS_AND_RESULTS" })mcp__hyrex__neural_train({ patternType: "trading-strategy", epochs: 10 })