recipe-multi-pair-breakout-watch

Monitor multiple pairs for price breakouts from defined ranges.

23 stars

Best use case

recipe-multi-pair-breakout-watch is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Monitor multiple pairs for price breakouts from defined ranges.

Teams using recipe-multi-pair-breakout-watch should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/kraken-official-recipe-multi-pair-breakout-watch/SKILL.md --create-dirs "https://raw.githubusercontent.com/jiayaoqijia/cryptoskill/main/skills/exchanges/kraken-official-recipe-multi-pair-breakout-watch/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/kraken-official-recipe-multi-pair-breakout-watch/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How recipe-multi-pair-breakout-watch Compares

Feature / Agentrecipe-multi-pair-breakout-watchStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Monitor multiple pairs for price breakouts from defined ranges.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# Multi-Pair Breakout Watch

> **PREREQUISITE:** Load the following skills to execute this recipe: `kraken-multi-pair`, `kraken-alert-patterns`

Watch a set of pairs for breakouts above resistance or below support levels.

## Steps

1. Define watchlist pairs and levels (agent maintains these):
   - BTCUSD: support 55000, resistance 65000
   - ETHUSD: support 2800, resistance 3500
   - SOLUSD: support 80, resistance 120
2. Get baseline OHLC for context: `kraken ohlc BTCUSD --interval 60 -o json 2>/dev/null`
3. Start streaming: `kraken ws ticker BTC/USD ETH/USD SOL/USD -o json 2>/dev/null`
4. Parse each NDJSON line: extract pair and last price
5. Compare last price to support/resistance levels
6. On breakout detection: alert the user with pair, direction, price, and level crossed
7. Optionally check volume to confirm breakout strength: `kraken ticker BTCUSD ETHUSD SOLUSD -o json 2>/dev/null`
8. Present breakout candidates ranked by volume confirmation

Related Skills