hyperliquid-analyzer
Analyze Hyperliquid market data and provide trading insights. Real-time price monitoring, trend analysis, and risk assessment.
Packaged view
This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.
Install command
npx @skill-hub/cli install openclaw-skills-hyperliquid-analyzer
Repository
Skill path: skills/b0on/hyperliquid-analyzer
Analyze Hyperliquid market data and provide trading insights. Real-time price monitoring, trend analysis, and risk assessment.
Open repositoryBest for
Primary workflow: Analyze Data & AI.
Technical facets: Full Stack, Data / AI.
Target audience: everyone.
License: Unknown.
Original source
Catalog source: SkillHub Club.
Repository owner: openclaw.
This is still a mirrored public skill entry. Review the repository before installing into production workflows.
What it helps with
- Install hyperliquid-analyzer into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
- Review https://github.com/openclaw/skills before adding hyperliquid-analyzer to shared team environments
- Use hyperliquid-analyzer for development workflows
Works across
Favorites: 0.
Sub-skills: 0.
Aggregator: No.
Original source / Raw SKILL.md
---
name: hyperliquid-analyzer
version: 1.0.0
description: Analyze Hyperliquid market data and provide trading insights. Real-time price monitoring, trend analysis, and risk assessment.
metadata:
openclaw:
emoji: "📊"
requires:
bins: ["curl", "jq"]
primaryEnv: HYPERLIQUID_WALLET_ADDRESS
---
# Hyperliquid Market Analyzer
Analyze market conditions on Hyperliquid DEX and provide actionable trading insights.
## Features
- Real-time price monitoring for BTC, ETH, SOL, HYPE
- Market trend analysis (bullish/bearish/neutral)
- Risk assessment based on volatility
- Portfolio balance tracking
- Price alerts on significant movements
## Usage
### Check Market Status
```bash
curl -s https://api.hyperliquid.xyz/info -X POST \
-H "Content-Type: application/json" \
-d '{"type": "metaAndAssetCtxs"}' | jq '.[0:4]'
```
### Get Current Prices
```bash
curl -s https://api.hyperliquid.xyz/info -X POST \
-H "Content-Type: application/json" \
-d '{"type": "allMids"}' | jq '{BTC: .BTC, ETH: .ETH, SOL: .SOL}'
```
## Analysis Capabilities
1. **Trend Detection**: Identifies short-term and medium-term trends
2. **Volatility Analysis**: Measures price swings for risk assessment
3. **Support/Resistance**: Calculates key price levels
4. **Sentiment**: Aggregates market sentiment indicators
## Example Output
```
📊 Hyperliquid Market Analysis
Current Prices:
BTC: $67,743 (+2.1% 24h)
ETH: $1,971 (+1.5% 24h)
SOL: $84.14 (-0.3% 24h)
Trend: BULLISH
Volatility: MEDIUM
Risk Level: 3/5
Recommendation:
BTC showing strong momentum. Consider long positions
with stop loss at $66,500.
```
## Configuration
Optional environment variables:
- `HYPERLIQUID_WALLET_ADDRESS`: Your wallet for portfolio tracking
- `HYPERLIQUID_API_KEY`: API key for authenticated requests
## Notes
- Free to use, no API key required for basic features
- Rate limit: 120 requests/minute
- Data refreshes every 5 seconds
---
## Skill Companion Files
> Additional files collected from the skill directory layout.
### _meta.json
```json
{
"owner": "b0on",
"slug": "hyperliquid-analyzer",
"displayName": "Hyperliquid Analyzer",
"latest": {
"version": "1.0.0",
"publishedAt": 1771264170422,
"commit": "https://github.com/openclaw/skills/commit/5ad2b04a26fbf940233d727a433b8050df9e805d"
},
"history": []
}
```