Hyperliquid Reader (Read-Only)

Read Hyperliquid (app.hyperliquid.xyz) perp + spot market data via opencli (read-only, public info API).

How to use it

Claude Code
  1. Run the line below. It pulls the whole folder into ~/.claude/skills/hyperliquid-reader, including the files SKILL.md points to.
  2. Describe your job in plain words. Claude Code follows the skill from there.
Claude Code — installs the whole folder, not just SKILL.md
npx degit himself65/finance-skills/plugins/data-providers/skills/hyperliquid-reader#main ~/.claude/skills/hyperliquid-reader

For one project only, change the path to .claude/skills/hyperliquid-reader. This skill also uses Node.js — copying SKILL.md alone won't be enough. See the folder on GitHub.

Claude (web or desktop app)
  1. On this page open ⋯ → Download .md.
  2. Save it as SKILL.md in a folder, zip the folder, then Customize → Skills → + → Create skill → Upload a skill.
  3. Pick the file and Save. Claude shows the name and description and runs a security scan.
  4. Check the skill is switched on.
  5. Start a new chat and describe your job in plain words. The AI follows the skill from there.
ChatGPT or another app
  1. ChatGPT: make a Project and paste it into Instructions.
  2. Neither? Paste it at the top of a new chat — it works for that chat.
Not working?
  • Check which app you pasted it into — the steps above name the right one.
  • Some skills need the paid tier of Claude or ChatGPT.
Step-by-step guide with screenshots · Ask in the forum

Paste into Claude, ChatGPT or Cursor.

Source of Hyperliquid Reader (Read-Only)

Show the full text162 lines
namedescription
hyperliquid-reader> Read Hyperliquid (app.hyperliquid.xyz) perp + spot market data via opencli (read-only, public info API). Use whenever the user wants Hyperliquid perpetual or spot markets, mark/oracle/mid prices, 24h change, funding rates (hourly or annualized APR), open interest, volume, the L2 order book, OHLCV candles, historical funding, or a cross-venue funding comparison (Hyperliquid vs Binance vs Bybit) for funding arbitrage. Triggers: "Hyperliquid funding for BTC", "HL perp markets", funding on BTC perp", "Hyperliquid order book", "HL open interest", funding arb Hyperliquid vs Binance", "Hyperliquid candles for SOL", Hyperliquid spot markets", "PURR price on Hyperliquid", "hyperliquid", hyperliquid.xyz", "HL DEX". READ-ONLY market data — no account, order, or trade operations.

Hyperliquid Reader (Read-Only)

Reads Hyperliquid — the on-chain perps/spot DEX — for market data via opencli and the hyperliquid plugin in this repo's opencli-plugins/hyperliquid tree (a separate plugin from opencli's built-in adapters, installed via opencli's monorepo subpath syntax).

This skill is read-only and market-data only. It reads Hyperliquid's fully public info API for analysis: market tables, funding, order book, and candles. It does NOT read individual accounts, place/modify/cancel orders, or move funds. There is no trading path in the plugin — order placement requires wallet-signed actions on a separate endpoint this adapter never calls.

How it works: every command issues a single POST https://api.hyperliquid.xyz/info with a { "type": "..." } body and normalizes the response. No API key, no wallet, no login, no running app — the info API is public.


Step 1: Ensure opencli + Plugin Are Installed and Ready

Current environment status:

!`(command -v opencli && opencli hyperliquid markets --coin BTC -f json 2>&1 | head -3 && echo "READY" || echo "SETUP_NEEDED") 2>/dev/null || echo "NOT_INSTALLED"`

If the status above shows READY, skip to Step 2. Otherwise:

NOT_INSTALLED — Install opencli
npm install -g @jackwener/opencli

Requires Node.js >= 24 — the hyperliquid plugin declares engines.node >= 24.

SETUP_NEEDED — Install the Hyperliquid plugin

The Hyperliquid adapter is not built into opencli — it's a separate plugin:

opencli plugin install github:himself65/finance-skills/hyperliquid

That's the entire setup — no auth, no launch step. Verify with opencli hyperliquid markets --coin BTC.

Common setup issues
Symptom Fix
opencli: command not found npm install -g @jackwener/opencli (Node ≥ 24)
Unknown command: hyperliquid opencli plugin install github:himself65/finance-skills/hyperliquid
hyperliquid info 429 Rate limited — wait a few seconds and retry

Step 2: Identify What the User Needs

User Request Command Key Flags
Perp markets overview / top by volume opencli hyperliquid markets --sort, --limit, --coin
One perp's price + funding + OI opencli hyperliquid markets --coin BTC —
Spot pairs overview opencli hyperliquid spot-markets --sort, --limit, --pair, --canonical-only
All current mid prices opencli hyperliquid mids --coin <substring>
Order book for a coin opencli hyperliquid book --coin ETH --depth, --n-sig-figs
OHLCV candles opencli hyperliquid candles --coin BTC --interval 1h --limit
Historical funding for a coin opencli hyperliquid funding-history --coin BTC --hours, --limit
Funding arb: HL vs Binance vs Bybit opencli hyperliquid funding-compare --coin, --sort, --limit

Step 3: Execute the Command

General pattern
# Use -f json or -f yaml for structured output
opencli hyperliquid markets --sort fundingAprPct --limit 15 -f json
opencli hyperliquid funding-compare --sort hlVsBinancePct --limit 20 -f md
opencli hyperliquid candles --coin BTC --interval 4h --limit 50 -f csv
opencli hyperliquid book --coin ETH --depth 5 -f json
Key rules
  1. Coin symbols are bare perp names — BTC, ETH, SOL, HYPE (no exchange prefix). Spot pairs are BASE/USDC (e.g. PURR/USDC); for book/candles you can pass either a perp coin or a spot pair.
  2. markets is the default lens for "how is X / the market doing" — it carries mark/oracle/mid price, 24h change, hourly funding + APR, open interest (coins and notional), and 24h volume in one row per perp. Filter with --coin for a single asset.
  3. Funding is reported two ways — fundingHrPct is the raw hourly rate as a percent; fundingAprPct annualizes it (hourly × 24 × 365). Lead with APR when comparing carry across assets; use the hourly figure for "what will I pay next hour".
  4. funding-compare is the funding-arb screen — it annualizes each venue with its own interval (HL hourly, Binance/Bybit usually 4h) and reports hlVsBinancePct / hlVsBybitPct spreads. Default sort ranks by absolute HL-vs-Binance spread (widest dislocations first). A positive hlVsBinancePct means HL longs pay more than Binance longs.
  5. book defaults to 10 levels per side — raise --depth (max 20) for more, or --n-sig-figs 2..5 to aggregate price levels. Compute the spread/mid from the top bid and ask.
  6. candles pulls the most recent --limit candles of --interval (default 1h, 100 candles). Valid intervals: 1m 3m 5m 15m 30m 1h 2h 4h 8h 12h 1d 3d 1w 1M. Max 5000.
  7. -f json for programmatic processing / feeding other skills; -f md or -f table for human-readable output.
  8. NEVER call any write operation. This skill is read-only market data — no account reads, no order placement, modification, or cancellation, and no transfers. The plugin intentionally exposes no write endpoints.
Output format flag (-f)
Format Flag Best for
Table -f table (default) Human-readable terminal output
JSON -f json Programmatic processing, LLM context
YAML -f yaml Structured, readable
Markdown -f md Reports
CSV -f csv Spreadsheet export
Output columns
  • markets — coin, markPx, midPx, oraclePx, change24hPct, fundingHrPct, fundingAprPct, openInterest, oiNotional, dayNtlVlm, premiumPct, maxLeverage
  • spot-markets — pair, base, markPx, midPx, change24hPct, dayNtlVlm, circulatingSupply, marketCap, canonical
  • mids — coin, mid
  • book — side, level, px, sz, orders
  • candles — time, open, high, low, close, volume, trades
  • funding-history — coin, fundingRatePct, fundingAprPct, premiumPct, time
  • funding-compare — coin, hlAprPct, binanceAprPct, bybitAprPct, hlVsBinancePct, hlVsBybitPct, nextHlFunding

Step 4: Present the Results

  1. Lead with the headline number, then the table. For markets --coin BTC: state mark price, 24h change, funding APR, and open interest in prose first. For a full markets dump: lead with the count and the top movers / highest-funding names.
  2. Frame funding in carry terms — e.g. "BTC perp funding is +10.9% APR (longs pay shorts)". Positive funding ⇒ longs pay shorts; negative ⇒ shorts pay longs.
  3. For funding-compare, surface the widest dislocations first — name the coin, both venues' APRs, and the spread, and remember the spread is annualized; a real arb also pays exchange/withdrawal frictions, so present it as a screen, not a guaranteed edge.
  4. For book, report the spread — best bid, best ask, mid, and spread in bps before (or instead of) dumping every level. Don't paste 20 levels unless asked.
  5. For candles, describe the move — first/last close, high/low, and direction; only show the full OHLCV table when the user wants the series.
  6. Filter aggressively before showing — markets has ~180 perps and mids ~700 markets; cap to top 15-20 by the relevant sort unless the user asks for the full list.
  7. Cross-reference for trade decisions — Hyperliquid is the on-chain venue; for equities/options context pair it with the tradingview-reader skill. For funding/basis trades, funding-compare plus markets (premium, OI) is the core view.

Step 5: Diagnostics

opencli hyperliquid markets --coin BTC

A successful BTC row confirms opencli, the plugin, and the public API are all reachable. If it errors with Unknown command: hyperliquid, reinstall the plugin (Step 1). A hyperliquid info 4xx/5xx is an upstream API issue — retry after a short wait.


Error Reference

Error Cause Fix
Unknown command: hyperliquid Plugin not installed opencli plugin install github:himself65/finance-skills/hyperliquid
hyperliquid info 429 Rate limited Wait a few seconds, then retry
hyperliquid info 422/500 Malformed body or upstream issue Re-check the coin/interval; retry after a wait
No perp market for coin "X" Wrong/unlisted symbol Run opencli hyperliquid markets (or mids) to find the exact symbol

Reference Files

  • references/commands.md — Every command with all flags, output schemas, and analyst workflows (funding carry, basis/arb, spot snapshot)
1---
2name: hyperliquid-reader
3description: >
4 Read Hyperliquid (app.hyperliquid.xyz) perp + spot market data via
5 opencli (read-only, public info API). Use whenever the user wants
6 Hyperliquid perpetual or spot markets, mark/oracle/mid prices, 24h
7 change, funding rates (hourly or annualized APR), open interest, volume,
8 the L2 order book, OHLCV candles, historical funding, or a cross-venue
9 funding comparison (Hyperliquid vs Binance vs Bybit) for funding
10 arbitrage. Triggers: "Hyperliquid funding for BTC", "HL perp markets",
11 "funding on BTC perp", "Hyperliquid order book", "HL open interest",
12 "funding arb Hyperliquid vs Binance", "Hyperliquid candles for SOL",
13 "Hyperliquid spot markets", "PURR price on Hyperliquid", "hyperliquid",
14 "hyperliquid.xyz", "HL DEX". READ-ONLY market data — no account, order,
15 or trade operations.
16---
17 
18# Hyperliquid Reader (Read-Only)
19 
20Reads [Hyperliquid](https://app.hyperliquid.xyz) — the on-chain perps/spot DEX — for market data via [opencli](https://github.com/jackwener/opencli) and the `hyperliquid` plugin in this repo's [`opencli-plugins/hyperliquid`](https://github.com/himself65/finance-skills/tree/main/opencli-plugins/hyperliquid) tree (a separate plugin from opencli's built-in adapters, installed via opencli's monorepo subpath syntax).
21 
22**This skill is read-only and market-data only.** It reads Hyperliquid's fully public info API for analysis: market tables, funding, order book, and candles. It does NOT read individual accounts, place/modify/cancel orders, or move funds. There is no trading path in the plugin — order placement requires wallet-signed actions on a separate endpoint this adapter never calls.
23 
24**How it works**: every command issues a single `POST https://api.hyperliquid.xyz/info` with a `{ "type": "..." }` body and normalizes the response. **No API key, no wallet, no login, no running app** — the info API is public.
25 
26---
27 
28## Step 1: Ensure opencli + Plugin Are Installed and Ready
29 
30**Current environment status:**
31 
32```
33!`(command -v opencli && opencli hyperliquid markets --coin BTC -f json 2>&1 | head -3 && echo "READY" || echo "SETUP_NEEDED") 2>/dev/null || echo "NOT_INSTALLED"`
34```
35 
36If the status above shows `READY`, skip to Step 2. Otherwise:
37 
38### NOT_INSTALLED — Install opencli
39 
40```bash
41npm install -g @jackwener/opencli
42```
43 
44Requires Node.js >= 24 — the `hyperliquid` plugin declares `engines.node >= 24`.
45 
46### SETUP_NEEDED — Install the Hyperliquid plugin
47 
48The Hyperliquid adapter is **not** built into opencli — it's a separate plugin:
49 
50```bash
51opencli plugin install github:himself65/finance-skills/hyperliquid
52```
53 
54That's the entire setup — no auth, no launch step. Verify with `opencli hyperliquid markets --coin BTC`.
55 
56### Common setup issues
57 
58| Symptom | Fix |
59|---|---|
60| `opencli: command not found` | `npm install -g @jackwener/opencli` (Node ≥ 24) |
61| `Unknown command: hyperliquid` | `opencli plugin install github:himself65/finance-skills/hyperliquid` |
62| `hyperliquid info 429` | Rate limited — wait a few seconds and retry |
63 
64---
65 
66## Step 2: Identify What the User Needs
67 
68| User Request | Command | Key Flags |
69|---|---|---|
70| Perp markets overview / top by volume | `opencli hyperliquid markets` | `--sort`, `--limit`, `--coin` |
71| One perp's price + funding + OI | `opencli hyperliquid markets --coin BTC` | — |
72| Spot pairs overview | `opencli hyperliquid spot-markets` | `--sort`, `--limit`, `--pair`, `--canonical-only` |
73| All current mid prices | `opencli hyperliquid mids` | `--coin <substring>` |
74| Order book for a coin | `opencli hyperliquid book --coin ETH` | `--depth`, `--n-sig-figs` |
75| OHLCV candles | `opencli hyperliquid candles --coin BTC --interval 1h` | `--limit` |
76| Historical funding for a coin | `opencli hyperliquid funding-history --coin BTC` | `--hours`, `--limit` |
77| Funding arb: HL vs Binance vs Bybit | `opencli hyperliquid funding-compare` | `--coin`, `--sort`, `--limit` |
78 
79---
80 
81## Step 3: Execute the Command
82 
83### General pattern
84 
85```bash
86# Use -f json or -f yaml for structured output
87opencli hyperliquid markets --sort fundingAprPct --limit 15 -f json
88opencli hyperliquid funding-compare --sort hlVsBinancePct --limit 20 -f md
89opencli hyperliquid candles --coin BTC --interval 4h --limit 50 -f csv
90opencli hyperliquid book --coin ETH --depth 5 -f json
91```
92 
93### Key rules
94 
951. **Coin symbols are bare perp names** — `BTC`, `ETH`, `SOL`, `HYPE` (no exchange prefix). Spot pairs are `BASE/USDC` (e.g. `PURR/USDC`); for `book`/`candles` you can pass either a perp coin or a spot pair.
962. **`markets` is the default lens for "how is X / the market doing"** — it carries mark/oracle/mid price, 24h change, hourly funding + APR, open interest (coins and notional), and 24h volume in one row per perp. Filter with `--coin` for a single asset.
973. **Funding is reported two ways** — `fundingHrPct` is the raw hourly rate as a percent; `fundingAprPct` annualizes it (`hourly × 24 × 365`). Lead with APR when comparing carry across assets; use the hourly figure for "what will I pay next hour".
984. **`funding-compare` is the funding-arb screen** — it annualizes each venue with its own interval (HL hourly, Binance/Bybit usually 4h) and reports `hlVsBinancePct` / `hlVsBybitPct` spreads. Default sort ranks by **absolute** HL-vs-Binance spread (widest dislocations first). A positive `hlVsBinancePct` means HL longs pay more than Binance longs.
995. **`book` defaults to 10 levels per side** — raise `--depth` (max 20) for more, or `--n-sig-figs 2..5` to aggregate price levels. Compute the spread/mid from the top bid and ask.
1006. **`candles` pulls the most recent `--limit` candles** of `--interval` (default `1h`, 100 candles). Valid intervals: `1m 3m 5m 15m 30m 1h 2h 4h 8h 12h 1d 3d 1w 1M`. Max 5000.
1017. **`-f json`** for programmatic processing / feeding other skills; `-f md` or `-f table` for human-readable output.
1028. **NEVER call any write operation.** This skill is read-only market data — no account reads, no order placement, modification, or cancellation, and no transfers. The plugin intentionally exposes no write endpoints.
103 
104### Output format flag (`-f`)
105 
106| Format | Flag | Best for |
107|---|---|---|
108| Table | `-f table` (default) | Human-readable terminal output |
109| JSON | `-f json` | Programmatic processing, LLM context |
110| YAML | `-f yaml` | Structured, readable |
111| Markdown | `-f md` | Reports |
112| CSV | `-f csv` | Spreadsheet export |
113 
114### Output columns
115 
116- `markets` — `coin`, `markPx`, `midPx`, `oraclePx`, `change24hPct`, `fundingHrPct`, `fundingAprPct`, `openInterest`, `oiNotional`, `dayNtlVlm`, `premiumPct`, `maxLeverage`
117- `spot-markets` — `pair`, `base`, `markPx`, `midPx`, `change24hPct`, `dayNtlVlm`, `circulatingSupply`, `marketCap`, `canonical`
118- `mids` — `coin`, `mid`
119- `book` — `side`, `level`, `px`, `sz`, `orders`
120- `candles` — `time`, `open`, `high`, `low`, `close`, `volume`, `trades`
121- `funding-history` — `coin`, `fundingRatePct`, `fundingAprPct`, `premiumPct`, `time`
122- `funding-compare` — `coin`, `hlAprPct`, `binanceAprPct`, `bybitAprPct`, `hlVsBinancePct`, `hlVsBybitPct`, `nextHlFunding`
123 
124---
125 
126## Step 4: Present the Results
127 
1281. **Lead with the headline number, then the table.** For `markets --coin BTC`: state mark price, 24h change, funding APR, and open interest in prose first. For a full `markets` dump: lead with the count and the top movers / highest-funding names.
1292. **Frame funding in carry terms** — e.g. "BTC perp funding is +10.9% APR (longs pay shorts)". Positive funding ⇒ longs pay shorts; negative ⇒ shorts pay longs.
1303. **For `funding-compare`, surface the widest dislocations first** — name the coin, both venues' APRs, and the spread, and remember the spread is annualized; a real arb also pays exchange/withdrawal frictions, so present it as a screen, not a guaranteed edge.
1314. **For `book`, report the spread** — best bid, best ask, mid, and spread in bps before (or instead of) dumping every level. Don't paste 20 levels unless asked.
1325. **For `candles`, describe the move** — first/last close, high/low, and direction; only show the full OHLCV table when the user wants the series.
1336. **Filter aggressively before showing** — `markets` has ~180 perps and `mids` ~700 markets; cap to top 15-20 by the relevant sort unless the user asks for the full list.
1347. **Cross-reference for trade decisions** — Hyperliquid is the on-chain venue; for equities/options context pair it with the `tradingview-reader` skill. For funding/basis trades, `funding-compare` plus `markets` (premium, OI) is the core view.
135 
136---
137 
138## Step 5: Diagnostics
139 
140```bash
141opencli hyperliquid markets --coin BTC
142```
143 
144A successful BTC row confirms opencli, the plugin, and the public API are all reachable. If it errors with `Unknown command: hyperliquid`, reinstall the plugin (Step 1). A `hyperliquid info 4xx/5xx` is an upstream API issue — retry after a short wait.
145 
146---
147 
148## Error Reference
149 
150| Error | Cause | Fix |
151|---|---|---|
152| `Unknown command: hyperliquid` | Plugin not installed | `opencli plugin install github:himself65/finance-skills/hyperliquid` |
153| `hyperliquid info 429` | Rate limited | Wait a few seconds, then retry |
154| `hyperliquid info 422/500` | Malformed body or upstream issue | Re-check the coin/interval; retry after a wait |
155| `No perp market for coin "X"` | Wrong/unlisted symbol | Run `opencli hyperliquid markets` (or `mids`) to find the exact symbol |
156 
157---
158 
159## Reference Files
160 
161- `references/commands.md` — Every command with all flags, output schemas, and analyst workflows (funding carry, basis/arb, spot snapshot)
162 

Discussion

Alternatives

Also in Trading modelsSee all 35 in Finance →
Networking engineer portfolio websiteCreate a professional and personalized portfolio website for a networking engineer to showcase skills, projects, and experience.Business & ops · CC0-1.0Defi protocol templatesImplement DeFi protocols with production-ready templates for staking, AMMs, governance, and flash loans. Use when building decentralized finance applications or smart contract protocols.Coding · MITQuant analystUse this agent when you need to develop quantitative trading strategies, build financial models with rigorous mathematical foundations, or conduct advanced risk analytics for derivatives and portfolios. Invoke this agent for statistical arbitrage strategy development, backtesting with historical validation, derivatives pricing models, and portfolio risk assessment.Business & ops · MITyfinance Data SkillFetch financial and market data using the yfinance Python library. Use this skill whenever the user asks for stock prices, historical data, financial statements, options chains, dividends, earnings, analyst recommendations, or any market data. Triggers include: any mention of stock price, ticker symbol (AAPL, MSFT, TSLA, etc.), get me the financials", "show earnings", "what's the price of", "download stock data", options chain", "dividend history", "balance sheet", "income statement", "cash flow", analyst targets", "institutional holders", "compare stocks", "screen for stocks", or any request involving Yahoo Finance data. Always use this skill even if the user only provides a ticker — infer intent from context.Business & ops · MIT