Skip to content
Data & Analyticstradermonty/claude-trading-skills

74 trading skills for process and risk, explicitly not for signals

Our takeWhat earns trust is the self-limitation: it states it is not designed for fully automated trading, signal outsourcing or scalping, a long disclaimer tops the README, and the licence is MIT 'AS IS'. The swing workflow runs drawdown-circuit-breaker and pre-trade-discipline-gate before any screener — risk gates before tickers. That ordering is the soul of the design and the opposite of most tools that lead with a list of picks.

2,867 stars, MIT, Japanese README included. 74 skills across 8 categories, 58 production and 16 beta, all governed by one canonical skills-index.yaml where each entry carries a verification matrix (data source, required or recommended, standalone or workflow_step, maturity); the README catalogue is generated from it. YAML manifests under workflows/ chain the skills into executable flows enforced by a validator.

Claude Code
git clone https://github.com/tradermonty/claude-trading-skills && cp -r claude-trading-skills/skills/backtest-expert ~/.claude/skills/
Pythontradermonty2.9k
74 trading skills for process and risk, explicitly not for signals
Site Opslocal/investment-analystLive

investment-analyst: the simulated-ETF quantitative line that runs every day

Our takeThe first principle is strict separation of strategy from execution: strategy.py answers target weights only, while execution.py owns closing-auction fills, limit-up and limit-down gates and blocked-order redistribution — bypass execution and the backtest numbers stop being comparable. The daily run stays under two seconds via three short-circuits, including an input-fingerprint check that exits with skip. Both real incidents were volume units, and the correct fix is deriving the factor from turnover rather than memorising a board table.

etf-rebalance v3.0.0 maintains RWHL, a simulated ETF of humanoid-robotics leaders (the page carries a built-in disclaimer; it is not a real fund). The daily SOP has a fixed order: qualitative overlay (human before machine), incremental quote sync, redrawn synthetic candles, a five-strategy backtest, today's rebalance, an appended history row, and POST /api/etf/portfolio. It is pure standard library, because production has 3GB of RAM.

Codex
Agientry
investment-analyst: the simulated-ETF quantitative line that runs every day