- Python 100%
| .github/workflows | ||
| scripts | ||
| skills | ||
| spec | ||
| template | ||
| 1 | ||
| LICENSE | ||
| README.md | ||
📈 Agent Trading Skills
A curated collection of 56 trading skills designed for AI agents. Built for DeepAlpha, but compatible with any agent that supports skills—including Claude Code, Antigravity, Cursor, and more.
About This Repository
Trading skills are structured knowledge modules that teach AI agents how to:
- Analyze charts using technical and fundamental analysis
- Identify patterns, setups, and trading opportunities
- Calculate position sizes and manage risk
- Generate trading signals with proper entry/exit strategies
Each skill is a standalone markdown file with clear instructions, formulas, and workflows. Browse through these skills to get inspiration for your own or to integrate them into your trading AI.
Skill Sets
| Directory | Description |
|---|---|
| ./skills | 56 trading skills across 7 categories |
| ./spec | The Trading Skills specification |
| ./template | Skill template for contributors |
Skill Categories
| Category | Skills | Description |
|---|---|---|
| ICT/Smart Money | 8 | Institutional trading concepts—order blocks, FVGs, liquidity |
| Technical Strategies | 14 | Indicator-based strategies—MACD, RSI, Fibonacci, VWAP |
| Chart Patterns | 8 | Classical patterns—head & shoulders, triangles, flags |
| Risk Management | 8 | Position sizing, stop losses, drawdown management |
| Day Trading | 7 | Intraday strategies—scalping, breakouts, momentum |
| Fundamental Analysis | 6 | Earnings, sentiment, economic calendar trading |
| Crypto Trading | 5 | Crypto-specific—on-chain analysis, funding rates, DCA |
Quick Start
Using with DeepAlpha
- Visit deepalpha.mn
- Browse the Skills Marketplace
- Fork skills to your profile
- Your AI trading assistant will use them automatically
Using with Other AI Agents
| Agent | Setup |
|---|---|
| Claude Code | Add to .claude/skills/ directory |
| Antigravity | Add to .agent/skills/ directory |
| Cursor | Add to .cursor/skills/ directory |
| Other agents | Point to the skills/ folder |
git clone https://github.com/ske-labs/trading-skills.git
cp -r trading-skills/skills/* .agent/skills/
Creating a Trading Skill
Skills are simple to create—just a folder with a SKILL.md file:
---
name: my-skill-name
description: What this skill does. Use when [trigger 1], [trigger 2], or [trigger 3].
license: Apache-2.0
metadata:
author: your-name
version: "1.0"
---
# My Skill Name
One-line intro.
## Identification
How to identify the setup
## Workflow
Step-by-step with tool calls
## Key Rules
- Critical rules and NEVER items
The frontmatter requires only two fields:
| Field | Description |
|---|---|
name |
Unique identifier (lowercase, hyphens for spaces) |
description |
What the skill does and when to use it (trigger conditions) |
Use the template as a starting point. See the spec for detailed guidelines.
Contributing
We welcome contributions! To add a new skill:
- Fork this repository
- Create a new folder under the appropriate category
- Copy template/SKILL.md and fill in your content
- Submit a pull request
Skill Guidelines
- Keep skills focused on a single concept
- Include practical workflows, not just theory
- Add tables for quick reference (levels, parameters)
- Provide specific values (percentages, pip values, ratios)
Related Links
- DeepAlpha Platform: deepalpha.mn
- Skills Marketplace: deepalpha.mn/marketplace
- Documentation: docs.deepalpha.mn
Disclaimer
These skills are provided for demonstration and educational purposes only. Trading involves substantial risk of loss. Past performance is not indicative of future results. Always do your own research and consider consulting a financial advisor before trading.
License
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.