Token导航 LogoToken导航TokenDH.com
效率需要联网clawhub未标认证来源可访问clear审计提醒

data912data912 分析

Agent Skill

用于辅助数据整理、表格处理、CSV/Excel 分析、指标计算和图表准备。它适合让 Agent 清洗字段、汇总数据、发现异常、生成统计口径或把分析结果转成可读说明。使用时需要确认数据来源、字段含义和时间范围,避免把样本数据当全量事实;涉及敏感数据、导出文件或批量写回时,应先确认权限和脱敏边界。

总安装

23,036

周安装

941

GitHub Stars

公开资料未说明

下载量

7,377
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:data912(data912 分析)
来源仓库:https://github.com/ferminrp/data912
安装命令:
openclaw skills install data912
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install data912

简介

连接 Data912 市场数据接口获取阿根廷与美国金融行情。

  • 支持 MEP/CCL 报价实时面板股票期权等多类资产查询。
  • 返回结构化数据便于进一步加工成交易信号或报表。
  • 需申请有效 API Key 并完成身份认证方可启用。
  • 高频请求可能被限流请合理安排调用频率。data912 属于效率类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
data912-market-data
description
>

Data912 Market Data

Query Data912's public market API for Argentina and USA market data snapshots, historical bars, and EOD derivatives analytics.

API Overview

  • Base URL: https://data912.com
  • Auth: None required (public API)
  • Format: JSON responses
  • Source note: Data912 describes this API as educational/hobby data and explicitly not real-time.
  • Caching note: Server metadata indicates roughly 2-hour Cloudflare caching.

Endpoint Groups

1. Live Market Panels

  • /live/mep (USD MEP)
  • /live/ccl (USD CCL)
  • /live/arg_stocks
  • /live/arg_options
  • /live/arg_cedears
  • /live/arg_notes
  • /live/arg_corp
  • /live/arg_bonds
  • /live/usa_adrs
  • /live/usa_stocks

Example:

curl -s "https://data912.com/live/arg_stocks" | jq '.[0:5]'

2. Historical OHLC

  • /historical/stocks/{ticker}
  • /historical/cedears/{ticker}
  • /historical/bonds/{ticker}

Example:

curl -s "https://data912.com/historical/stocks/GGAL" | jq '.[0:10]'

3. EOD Derivatives Analytics

  • /eod/volatilities/{ticker}
  • /eod/option_chain/{ticker}

Examples:

curl -s "https://data912.com/eod/volatilities/AAPL" | jq '.'
curl -s "https://data912.com/eod/option_chain/AAPL" | jq '.[0:10]'

Out of Scope for This Skill

  • Do not use /contact in this skill. Keep this skill focused on market data retrieval and interpretation.

Key Fields

Panel Fields (/live/*)

  • symbol: instrument ticker/symbol
  • px_bid, q_bid: bid price and bid size
  • px_ask, q_ask: ask price and ask size
  • c: last/close-like traded value
  • pct_change: percentage variation
  • v: volume
  • q_op: operations count (when provided)

Historical Fields (/historical/*/{ticker})

  • date: date string
  • o, h, l, c: OHLC values
  • v: volume
  • dr: daily return
  • sa: additional numeric metric provided by source

Volatility Metrics (/eod/volatilities/{ticker})

  • IV term structure: iv_s_term, iv_m_term, iv_l_term
  • IV percentiles: iv_*_percentile
  • HV term structure: hv_s_term, hv_m_term, hv_l_term
  • HV percentiles: hv_*_percentile
  • Relative-value ratios: iv_hv_*_ratio, iv_fair_iv_ratio
  • Fair value reference: fair_iv, fair_iv_percentile

Option Chain Fields (/eod/option_chain/{ticker})

  • Contract context: opex, s_symbol, type, k
  • Market data: bid, ask, c, oi
  • Greeks: delta, gamma, theta, vega, rho
  • Valuation/probabilities: fair_value, fair_iv, itm_prob, intrinsic, otm
  • Horizon context: r_days, r_tdays, hv_2m, hv_1yr

Workflow

  1. Identify intent and select endpoint group:

- FX/panel snapshot -> /live/* - Time series/evolution -> /historical/*/{ticker} - Options/risk analytics -> /eod/*/{ticker}

  1. Validate required input:

- For historical/EOD endpoints, require a ticker symbol. - If ticker is missing, ask for it before querying.

  1. Fetch data with curl -s and parse with jq.
  2. Handle empty arrays:

- If response is [], report: "No data currently available for this endpoint/ticker."

  1. Present an actionable summary:

- Start with a short snapshot. - Then include relevant detail fields requested by the user.

  1. Keep context clear:

- Remind users this is educational/non-real-time data. - Avoid turning output into trading advice.

Error Handling

  • 429 Too Many Requests:

- Most market endpoints publish 120 req/min. - Back off and retry after a short delay; avoid burst loops.

  • 422 Validation Error:

- Usually invalid/missing path input such as ticker formatting. - Re-check symbol and endpoint before retrying.

  • Network/timeout failures:

- Retry a small number of times (for example, 2 retries with delay). - If still failing, return a clear failure message and the endpoint attempted.

Presenting Results

When returning results to the user:

  • Lead with a concise snapshot (what moved, where, and magnitude).
  • For panel requests, compare bid/ask/last and % change.
  • For historical requests, summarize trend windows and notable jumps.
  • For vol/options requests, highlight percentiles and IV/HV relationships.
  • Explicitly mention the data is educational/non-real-time.
  • Do not provide financial recommendations.

OpenAPI Spec

For the full schema and endpoint definitions, see references/openapi-spec.json.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

77.21%
按下载量换算5,696

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills