Agent Skills
› krakenfx/kraken-cli
› recipe-multi-pair-breakout-watch
recipe-multi-pair-breakout-watch
GitHub监控多个交易对价格突破支撑或阻力位,实时解析行情流并基于成交量确认强度,向用户发送带详细信息的警报。
Trigger Scenarios
需要监控特定交易对的支撑/阻力突破
检测价格异动并获取警报
Install
npx skills add krakenfx/kraken-cli --skill recipe-multi-pair-breakout-watch -g -y
SKILL.md
Frontmatter
{
"name": "recipe-multi-pair-breakout-watch",
"version": "1.0.0",
"metadata": {
"openclaw": {
"domain": "market-data",
"category": "recipe"
},
"requires": {
"bins": [
"kraken"
],
"skills": [
"kraken-multi-pair",
"kraken-alert-patterns"
]
}
},
"description": "Monitor multiple pairs for price breakouts from defined ranges."
}
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
- Define watchlist pairs and levels (agent maintains these):
- BTCUSD: support 55000, resistance 65000
- ETHUSD: support 2800, resistance 3500
- SOLUSD: support 80, resistance 120
- Get baseline OHLC for context:
kraken ohlc BTCUSD --interval 60 -o json 2>/dev/null - Start streaming:
kraken ws ticker BTC/USD ETH/USD SOL/USD -o json 2>/dev/null - Parse each NDJSON line: extract pair and last price
- Compare last price to support/resistance levels
- On breakout detection: alert the user with pair, direction, price, and level crossed
- Optionally check volume to confirm breakout strength:
kraken ticker BTCUSD ETHUSD SOLUSD -o json 2>/dev/null - Present breakout candidates ranked by volume confirmation
If you hit a mismatch between what you are trying to do and the CLI's interface or responses — including a mismatch between this skill and the installed CLI version's contract — feel free to submit feedback with kraken feedback.
Version History
- aa56e59 Current 2026-08-20 04:46
- aa32814 2026-07-25 10:29


