Trading skills for Agentic AI
Find a file
2026-05-26 17:00:11 +08:00
.github/workflows fix: manually trigger workflow 2026-02-12 15:23:39 +08:00
scripts fix: update skills to reflect latest tools 2026-05-26 17:00:11 +08:00
skills fix: update skills to reflect latest tools 2026-05-26 16:49:51 +08:00
spec fix: update skills to reflect latest tools 2026-05-26 16:49:51 +08:00
template fix(patterns): make patterns concise & drawing oriented 2026-03-27 15:05:55 +08:00
1 fix: tool params 2026-03-19 17:17:18 +08:00
LICENSE Initial commit 2026-01-15 22:21:54 +08:00
README.md fix: update skills to reflect latest tools 2026-05-26 17:00:11 +08:00

📈 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.

Apache 2.0 License Skills DeepAlpha


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

  1. Visit 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
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:

  1. Fork this repository
  2. Create a new folder under the appropriate category
  3. Copy 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)


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.


🚀 Discover more skills at DeepAlpha