# Head And Shoulders

> Identify and trade head and shoulders reversal patterns. Use when spotting major trend reversals, validating bearish/bullish structure changes, or finding high R:R reversal setups.

- **Type:** Skill
- **Install:** `agentstack add skill-ske-labs-agent-trading-skills-head-and-shoulders`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [SKE-Labs](https://agentstack.voostack.com/s/ske-labs)
- **Installs:** 0
- **Category:** [Agent Skills](https://agentstack.voostack.com/c/agent-skills)
- **Latest version:** 0.1.0
- **License:** Apache-2.0
- **Upstream author:** [SKE-Labs](https://github.com/SKE-Labs)
- **Source:** https://github.com/SKE-Labs/agent-trading-skills/tree/main/skills/chart-patterns/head-and-shoulders

## Install

```sh
agentstack add skill-ske-labs-agent-trading-skills-head-and-shoulders
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# Head and Shoulders Pattern

Reliable reversal pattern signaling the end of an uptrend (or downtrend for inverse).

## Pattern Structure

### H&S (Bearish Reversal)
1. **Left Shoulder** — Rally to new high, pullback
2. **Head** — Higher high than left shoulder, pullback
3. **Right Shoulder** — Lower high than head, starts to drop
4. **Neckline** — Connect the two pullback lows

### Inverse H&S (Bullish Reversal)
1. **Left Shoulder** — Drop to new low, bounce
2. **Head** — Lower low, bounce
3. **Right Shoulder** — Higher low, starts to rise
4. **Neckline** — Connect the two bounce highs

| Criteria | Requirement |
|----------|-------------|
| Volume | Decreasing on right shoulder |
| Symmetry | Shoulders roughly equal height |
| Prior trend | Must have existing trend to reverse |

## Workflow

### 1. Get Exact Data

```
get_candles_around_date(symbol=, exchange=, interval=, date=)
```

### 2. Mark Structure Points (3 parallel highlight calls)

```
draw_chart_analysis(action="create", drawing={
    "type": "highlight",
    "points": [{"time": , "price": }],
    "options": {"text": "LS"}
})

draw_chart_analysis(action="create", drawing={
    "type": "highlight",
    "points": [{"time": , "price": }],
    "options": {"text": "Head"}
})

draw_chart_analysis(action="create", drawing={
    "type": "highlight",
    "points": [{"time": , "price": }],
    "options": {"text": "RS"}
})
```

### 3. Draw Neckline

```
draw_chart_analysis(action="create", drawing={
    "type": "support",
    "points": [
        {"time": , "price": },
        {"time": , "price": }
    ],
    "options": {"text": "Neckline"}
})
```

For inverse H&S, use `"resistance"` instead of `"support"`.

### 4. Enter

**Standard:** Enter on neckline break + close with volume. Stop above right shoulder.
**Preferred:** Wait for neckline break, then retest. Enter on rejection. Tighter stop.
**Target:** Head-to-neckline distance projected from break point.

## Key Rules
- NEVER trade before neckline break — pattern incomplete until confirmed
- NEVER ignore volume: declining volume on right shoulder validates weakness
- Must have a prior trend to reverse; H&S in a range is invalid
- Right shoulder failure (doesn't reach LS height) strengthens bearish case

## Related Skills
- **double-top-bottom** — Similar reversal family
- **multi-timeframe-analysis** — HTF H&S signals major reversals

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [SKE-Labs](https://github.com/SKE-Labs)
- **Source:** [SKE-Labs/agent-trading-skills](https://github.com/SKE-Labs/agent-trading-skills)
- **License:** Apache-2.0

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-ske-labs-agent-trading-skills-head-and-shoulders
- Seller: https://agentstack.voostack.com/s/ske-labs
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
