
Okx Sentiment Tracker
Pull OKX news sentiment, coin trends, and daily briefings alongside market data for crypto trading decisions.
Overview
okx-sentiment-tracker is an agent skill most often used in Grow (also Idea) that runs read-only OKX news and sentiment commands for coin-level and market-wide analytics.
Install
npx skills add https://github.com/okx/agent-skills --skill okx-sentiment-trackerWhat is this skill?
- Read-only OKX news and sentiment CLI commands for agents
- BTC market overview workflow pairs sentiment with okx-cex-market ticker, candles, funding
- Daily market briefing pattern scopes news with --begin midnight timestamp
- Parallel fetch: important news, sentiment-rank, multi-coin sentiment, intraday coin-trend
- Fallback web search hint when by-coin returns fewer than three headlines
- Market briefing workflow uses parallel calls with --begin scoped to today’s midnight
- BTC overview example uses by-coin --limit 5 and supplements if fewer than 3 results
Adoption & trust: 4.4k installs on skills.sh; 134 GitHub stars; 2/3 security scanners passed (skills.sh audits).
What problem does it solve?
You need a repeatable sentiment and headlines snapshot for BTC or alts without manually checking multiple news and market tabs.
Who is it for?
Solo crypto traders and agent builders who already use OKX skills and want sentiment layered into daily or per-coin reviews.
Skip if: Builders who need on-chain DeFi analytics only, or anyone expecting trade execution or wallet actions from this read-only news layer.
When should I use this skill?
You need OKX news sentiment snapshots, sentiment-rank leaders, coin-trend series, or a daily scoped briefing combined with market data skills.
What do I get? / Deliverables
You get CLI-assembled sentiment ratios, trending coins, scoped breaking news, and optional pairing with OKX market tickers and funding for a single briefing.
- Coin-level sentiment snapshot
- Trending coins by mentions
- Today-scoped high-impact news list for briefings
Recommended Skills
Journey fit
Spans multiple journey phases - primary shelf plus alternate fits below.
Sentiment rank, coin-trend series, and scoped daily briefings compound ongoing market awareness—canonical shelf is Grow analytics. Commands like coin-sentiment, sentiment-rank, and coin-trend are read-only analytics inputs, not trade execution or infra ops.
Where it fits
Run parallel important news, sentiment-rank, and BTC/ETH coin-sentiment each morning with --begin set to today’s midnight.
Check coin-trend and by-coin headlines before committing to a swing thesis on a single alt.
Pair sentiment shifts with funding-rate reads from okx-cex-market to explain positioning narratives to yourself or users.
How it compares
OKX news/sentiment CLI recipes—not a generic web scraper skill or discretionary trading bot.
Common Questions / FAQ
Who is okx-sentiment-tracker for?
Agents and solo traders integrating OKX’s news APIs who want sentiment rank, coin-sentiment, and briefing workflows in the terminal.
When should I use okx-sentiment-tracker?
In Grow for daily briefings and trend monitoring, and in Idea when researching whether news sentiment supports entering or sizing a position.
Is okx-sentiment-tracker safe to install?
Documented commands are read-only for news and sentiment; review the Security Audits panel on this page and treat API keys per OKX’s own skill guidance.
SKILL.md
READMESKILL.md - Okx Sentiment Tracker
# Cross-Skill Workflows & MCP Tool Reference ## Cross-Skill Workflows All news and sentiment commands are read-only. --- ### BTC Market Overview Combine news sentiment with market data for a complete picture: ``` # News & Sentiment (this skill) okx news coin-sentiment --coins BTC → sentiment snapshot (bullish/bearish ratio) okx news by-coin --coins BTC --limit 5 → recent news headlines # Market Data (okx-cex-market skill) okx market ticker BTC-USDT → current price, 24h change, volume okx market candles BTC-USDT --bar 1D --limit 7 → 7-day price chart data okx market funding-rate BTC-USDT-SWAP → perpetual funding rate (long/short bias) ``` If `by-coin` returns fewer than 3 results, supplement with: ``` web search: "BTC Bitcoin news today site:coindesk.com OR site:cointelegraph.com" ``` --- ### Market Briefing — daily briefing **Always scope news to today** using `--begin` with today's midnight timestamp: ```bash # macOS BEGIN=$(date -v0H -v0M -v0S +%s000) # Linux BEGIN=$(date -d 'today 00:00:00' +%s000) ``` Call the following **in parallel**, then aggregate: ``` # News & Sentiment (this skill) okx news important --begin $BEGIN --limit 10 → today's high-impact breaking news okx news sentiment-rank → trending coins by mention count okx news coin-sentiment --coins BTC,ETH → major coin sentiment snapshot okx news coin-trend BTC --period 1h --points 24 → BTC intraday sentiment movement okx news coin-trend ETH --period 1h --points 24 → ETH intraday sentiment movement # Market Data (okx-cex-market skill) — enrich briefing with price context okx market ticker BTC-USDT → BTC price, 24h change % okx market ticker ETH-USDT → ETH price, 24h change % # Derivatives Data (okx-cex-market skill) — critical for complete market picture okx market funding-rate BTC-USDT-SWAP → funding rate (long/short bias) okx market funding-rate ETH-USDT-SWAP → ETH funding rate okx market open-interest --instType SWAP --instId BTC-USDT-SWAP → BTC open interest okx market open-interest --instType SWAP --instId ETH-USDT-SWAP → ETH open interest okx market oi-change --instType SWAP --limit 10 → top 10 OI change (which contracts are seeing position buildup) ``` The derivatives data (funding rate, open interest, OI change) provides insights that news sentiment alone cannot capture — it reveals how traders are actually positioning, not just what they're saying. Always include this section in daily briefings. If any command returns empty or sparse results, supplement with web search: ``` web search: "crypto news today site:coindesk.com OR site:theblock.co" ``` Aggregate into a structured report with this format: ``` ## Daily Crypto Briefing — {date} ### Major Events | Time | Source | Event | Impact | |------|--------|-------|--------| | 09:15 | CoinDesk | SEC approves spot ETH ETF | Bullish for ETH | | ... | ... | ... | ... | ### Trending Coins | Rank | Coin | Mentions | Sentiment | Δ24h (via `market ticker`) | |------|------|----------|-----------|----------------------------| | 1 | BTC | 1,234 | Bullish (68%) | +5% | | ... | ... | ... | ... | ... | ### Sentiment Overview - **BTC**: Bullish 68% / Bearish 32% — driven by ETF inflows - **ETH**: Bullish 55% / Bearish 45% — mixed on L2 competition ### Derivatives Positioning | Metric | BTC-USDT-SWAP | ETH-USDT-SWAP | |--------|---------------|---------------| | Funding Rate | +0.01% (slightly long) | -0.005% (neutral) | | Open Interest | $12.3B | $5.1B | **OI Change Top Movers** (SWAP, 24h): | Rank | Contract | OI Change | Direction | |------|----------|-----------|-----------| | 1 | ... | +15% | Longs building | | ... | ... | ... | ... | ### Worth Watching 1. {takeaway 1} 2. {takeaway 2} ``` > De-duplicate overlapping items before presenting (same event may appear in both important and latest feeds). > If combining OKX API data with web search results, m