---
slug: "agent-trading-skills"
source_type: "readme"
source_url: "https://cdn.jsdelivr.net/gh/SKE-Labs/agent-trading-skills@main/README.md"
repo: "https://github.com/SKE-Labs/agent-trading-skills"
source_file: "README.md"
branch: "main"
---
# 📈 Agent Trading Skills

A curated collection of **56 trading skills** designed for AI agents. Built for [DeepAlpha](https://deepalpha.mn), but compatible with any agent that supports skills—including **Claude Code**, **Antigravity**, **Cursor**, and more.

[![Apache 2.0 License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](LICENSE)
[![Skills](https://img.shields.io/badge/skills-56-green.svg)](#skill-categories)
[![DeepAlpha](https://img.shields.io/badge/platform-DeepAlpha-purple.svg)](https://deepalpha.mn)

---

## 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**](https://github.com/SKE-Labs/agent-trading-skills/tree/HEAD/skills)     | 56 trading skills across 7 categories |
| [**./spec**](https://github.com/SKE-Labs/agent-trading-skills/tree/HEAD/spec)         | The Trading Skills specification      |
| [**./template**](https://github.com/SKE-Labs/agent-trading-skills/tree/HEAD/template) | Skill template for contributors       |

### Skill Categories

| Category                                                | Skills | Description                                                  |
| ------------------------------------------------------- | ------ | ------------------------------------------------------------ |
| [**ICT/Smart Money**](https://github.com/SKE-Labs/agent-trading-skills/tree/HEAD/skills/ict-smart-money)           | 8      | Institutional trading concepts—order blocks, FVGs, liquidity |
| [**Technical Strategies**](https://github.com/SKE-Labs/agent-trading-skills/tree/HEAD/skills/technical-strategies) | 14     | Indicator-based strategies—MACD, RSI, Fibonacci, VWAP        |
| [**Chart Patterns**](https://github.com/SKE-Labs/agent-trading-skills/tree/HEAD/skills/chart-patterns)             | 8      | Classical patterns—head & shoulders, triangles, flags        |
| [**Risk Management**](https://github.com/SKE-Labs/agent-trading-skills/tree/HEAD/skills/risk-management)           | 8      | Position sizing, stop losses, drawdown management            |
| [**Day Trading**](https://github.com/SKE-Labs/agent-trading-skills/tree/HEAD/skills/day-trading)                   | 7      | Intraday strategies—scalping, breakouts, momentum            |
| [**Fundamental Analysis**](https://github.com/SKE-Labs/agent-trading-skills/tree/HEAD/skills/fundamental-analysis) | 6      | Earnings, sentiment, economic calendar trading               |
| [**Crypto Trading**](https://github.com/SKE-Labs/agent-trading-skills/tree/HEAD/skills/crypto-trading)             | 5      | Crypto-specific—on-chain analysis, funding rates, DCA        |

---

## Quick Start

### Using with DeepAlpha

1. Visit [deepalpha.mn](https://deepalpha.mn)
2. Browse the Skills Marketplace
3. Fork skills to your profile
4. 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      |

```bash
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:

```yaml
---
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 three fields:

| Field         | Description                                                     |
| ------------- | --------------------------------------------------------------- |
| `name`        | Unique identifier (lowercase, hyphens for spaces)               |
| `description` | What the skill does **and when to use it** (trigger conditions) |
| `license`     | SPDX-style license identifier, such as `Apache-2.0`             |

Use the [template](https://github.com/SKE-Labs/agent-trading-skills/blob/HEAD/template/SKILL.md) as a starting point. See the [spec](https://github.com/SKE-Labs/agent-trading-skills/blob/HEAD/spec/README.md) for detailed guidelines.

---

## Contributing

We welcome contributions! To add a new skill:

1. **Fork** this repository
2. **Create** a new folder under the appropriate category
3. **Copy** [template/SKILL.md](https://github.com/SKE-Labs/agent-trading-skills/blob/HEAD/template/SKILL.md) and fill in your content
4. **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](https://deepalpha.mn)
- **Skills Marketplace**: [deepalpha.mn/marketplace](https://deepalpha.mn/marketplace)
- **Documentation**: [docs.deepalpha.mn](https://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](https://github.com/SKE-Labs/agent-trading-skills/tree/HEAD/LICENSE) file for details.

---

<p align="center">
  <a href="https://deepalpha.mn">
    <strong>🚀 Discover more skills at DeepAlpha</strong>
  </a>
</p>
