← 返回
未分类 Key

Methodalgo Market Intel Explorer

Fetch MethodAlgo crypto market intelligence with methodalgo-cli. Use when: checking crypto news, trading signals, token unlocks, ETF flows, chart snapshots,...
使用 methodalgo-cli 获取 MethodAlgo 加密货币市场情报。适用场景:查看加密新闻、交易信号、代币解锁、ETF 流向、图表快照等。
methodalgo
未分类 clawhub v1.4.2 4 版本 100000 Key: 需要
★ 1
Stars
📥 612
下载
💾 1
安装
4
版本
#latest

概述

MethodAlgo Market Intel Explorer Skill

Use this skill as the AI-facing routing layer for methodalgo-cli. Keep direct CLI calls in JSON mode unless the user explicitly asks for human-readable output.

Install And Auth

Install or update the CLI:

npm install -g methodalgo-cli
methodalgo --version

Use methodalgo-cli >= 1.0.36 for macro and totals; use >= 1.0.26 for Binance public market data.

Most MethodAlgo service commands require METHODALGO_API_KEY or methodalgo login:

methodalgo login

Authentication rules:

  • news, signals, snapshot, calendar, macro, and totals require MethodAlgo service access.
  • METHODALGO_API_KEY is required for normal MethodAlgo CLI service usage and login flows.
  • methodalgo binance ... uses Binance public endpoints and does not require a MethodAlgo API key or Binance API key.
  • The CLI prioritizes METHODALGO_API_KEY over local login config.

Troubleshooting:

ErrorAction
------
Authentication Required / 401 / 403Set METHODALGO_API_KEY, run methodalgo login, or verify the key at https://account.methodalgo.com/account/api-keys.
methodalgo not foundInstall with npm install -g methodalgo-cli.
macro / totals missingUpdate to methodalgo-cli >= 1.0.36.
Binance command missingUpdate to methodalgo-cli >= 1.0.26.
Network timeout / fred request failedCheck access to methodalgo.com, upstream macro/FRED services, or Binance public API endpoints.

Reference Loading

Load only the reference needed for the task:

Command Index

Always include --json for structured output.

methodalgo news --type <article|breaking|onchain|report> --limit <N> --json
methodalgo news --type article --search "Bitcoin" --limit 5 --json
methodalgo signals <channel> --limit <N> --json
methodalgo snapshot <symbol> [tf] --url --json
methodalgo calendar --countries <codes> [options] --json
methodalgo macro <subcommand> [options] --json
methodalgo totals [metric] [options] --json
methodalgo binance <subcommand> [options] --json

Core routing:

IntentPrefer
------
Latest market newsmethodalgo news --type breaking --limit 50 --json
Deep market articlesmethodalgo news --type article --limit 100 --json
Symbol-specific newsmethodalgo news --type article --search "" --limit 10 --json
Trading signalsmethodalgo signals --limit 10 --json
Chart image URLmethodalgo snapshot BTCUSDT.P 60 --url --json
Economic eventsmethodalgo calendar --countries US,EU,CN --json
Macro dashboardmethodalgo macro dashboard --json
Net liquiditymethodalgo macro liquidity --tail 52 --json
Crypto-wide totalsmethodalgo totals --json
BTC dominance / Fear & Greed / Altseason`methodalgo totals --history 30d90d1y --json`
Binance spot pricemethodalgo binance price BTCUSDT --json
Binance futures pricemethodalgo binance price BTCUSDT.P --json
Binance futures funding / OI / sentimentmethodalgo binance funding BTCUSDT.P --json; methodalgo binance oi BTCUSDT.P --period 5m --json; methodalgo binance sentiment BTCUSDT.P --period 5m --json

Signals Schema Lock

Use methodalgo signals --limit --json.

Standard signal channels return an array of message objects. Each message may contain id, timestamp, attachments, image, and a nested signals array. Each nested signal may contain title, description, direction, and channel-specific details. Full examples live in references/sample-output.md.

Protected details field map:

ChannelRequired details fields
------
breakout-*Symbol, TimeFrame, Type (UP / DOWN), BreakPrice, Exchange
liquidationSymbol, Side, Quantity, Average Price, Liquidation Price, Position Total
exhaustion-*Type, Timeframe, Exhaustion Side, Safety, Tip, Exchange
golden-pit-*Pattern, Safety
etf-trackerNet Inflow, 7 Days Avg.
market-todayVariable Discord-style summary fields; do not use it as the structured metric source.

Signal interpretation:

  • exhaustion-buyer is bearish buyer exhaustion.
  • exhaustion-seller is bullish seller exhaustion.
  • If CLI help text conflicts with these exhaustion directions, follow this Schema Lock.
  • market-today is a Discord-style summary stream. For structured BTC Dominance, ETH Dominance, Total Market Cap, Fear & Greed, and Altseason Index values, call methodalgo totals --json or methodalgo totals --json.

token-unlock is the special-case channel: it returns a root object shaped as { signals: [...], updatedAt }, not a root array. Token unlock items include ts, symbol, perc, progress, circSup, countDown, marketCap, unlockToken, and unlockTokenVal. When showing countdowns, calculate live timing from ts and updatedAt rather than trusting countDown as immutable text.

Market Data Rules

News:

  • article normally includes richer excerpt, analysis, and url.
  • breaking, onchain, and report can omit article-style fields.
  • For Chinese output, prefer title.zh, excerpt.zh, and analysis.zh when present.
  • News limit can be as high as 500; use 50-100 for broad time coverage.

Macro:

  • Use methodalgo macro ... for server-side macro/FRED-derived data. The CLI no longer needs a local FRED key.
  • methodalgo macro liquidity computes Net Liquidity from Fed Assets - RRP - TGA and is the default liquidity command for BTC macro analysis.
  • Macro commands can still fail on upstream service/network errors such as fred request failed; surface the failure instead of fabricating macro values.
  • For subcommand tables and high-alpha series IDs such as FEDFUNDS, WALCL, M2SL, RRPONTSYD, WTREGEN, CPIAUCSL, DGS10, DGS2, REAINTRATREARAT10Y, DTWEXBGS, and VIXCLS, read references/command-reference.md.

Totals:

  • Use methodalgo totals --json for crypto-wide structured metrics.
  • Supported metrics include btc-dominance, eth-dominance, total-market-cap, fear-greed, and altseason-index.
  • Plain methodalgo totals shows human CLI help; methodalgo totals --json is the AI structured aggregate endpoint.
  • Use signals market-today only when the user wants the Discord-style market summary stream.

Binance:

  • BTCUSDT means spot.
  • BTCUSDT.P means USD-M perpetual futures; the CLI sends BTCUSDT to Binance futures APIs.
  • Use --market futures for list-style futures queries such as movers.
  • funding, oi, sentiment, and basis are futures-only.
  • Binance --json often returns direct Binance API shapes; do not assume every subcommand has the same wrapper.
  • raw is restricted to allowlisted public endpoints. Account, order, trading, signed, and user-data endpoints are intentionally blocked.

Two-Phase Fetch Strategy

Use a low-cost preview first, then deepen only where the data points:

  1. Preview: fetch 5-10 items for news, signals, totals, or Binance market data.
  2. Deep dive: use --after, --search, symbol filtering, or larger limits after identifying relevant IDs, symbols, or themes.

Examples:

methodalgo signals breakout-mtf --limit 5 --json
methodalgo signals breakout-mtf --limit 100 --after "msgId" --json
methodalgo news --type article --search "SOL" --limit 10 --json

Scenario Shortcuts

ScenarioCommands
------
Daily market overviewtotals --json; signals etf-tracker; news article; news breaking; optionally signals market-today.
Specific coin deep scanSearch news, inspect breakout signals, fetch Binance futures price/funding/OI/sentiment, then fetch snapshot.
Liquidation and reversal monitorsignals liquidation; signals exhaustion-buyer; signals exhaustion-seller.
Token unlock checksignals token-unlock --limit 1 --json; parse root signals.
Macro regime checkmacro dashboard; macro recession; macro liquidity --tail 52; optional macro compare or macro zscore.
Binance microstructurebinance price; binance klines; binance funding; binance oi; binance sentiment.

Output Rules

  • Parse JSON with structured logic, not string matching.
  • Surface authentication and version errors explicitly.
  • Do not collapse market-today and totals; they serve different data shapes.
  • Do not normalize away .P when presenting user-facing futures symbols.
  • If a task needs exact parameter choices, load references/command-reference.md.
  • If a task needs sample JSON, load references/sample-output.md.
  • If a task needs field coverage for less common command variants, load references/output-shape-catalog.md.

Github: https://github.com/methodalgo/methodalgo-market-intel-explorer

ClawHub: https://clawhub.ai/methodalgo/methodalgo-market-intel-explorer

版本历史

共 4 个版本

  • v1.4.2 当前
    2026-06-01 20:47
  • v1.4.1
    2026-05-26 17:43 安全 安全
  • v1.3.0
    2026-05-07 03:59 安全 安全
  • v1.2.0
    2026-05-03 08:50 安全

安全检测

腾讯云安全 (Keen)

队列中

腾讯云安全 (Sanbu)

队列中

🔗 相关推荐

developer-tools

Github

steipete
使用 `gh` CLI 与 GitHub 交互,通过 `gh issue`、`gh pr`、`gh run` 和 `gh api` 管理议题、PR、CI 运行及高级查询。
★ 672 📥 324,995
security-compliance

Skill Vetter

spclaudehome
AI智能体技能安全预审工具。安装ClawdHub、GitHub等来源技能前,检查风险信号、权限范围及可疑模式。
★ 1,223 📥 267,398
ai-intelligence

self-improving agent

pskoett
捕获经验教训、错误及修正内容,以实现持续改进。适用于以下场景:(1)命令或操作意外失败;(2)用户纠正Claude(如“不,那不对……”“实际上……”);(3)用户请求的功能不存在;(4)外部API或工具出现故障;(5)Claude发现自身
★ 4,072 📥 805,500