← 返回 Skills 市场
traderhc123

Stock Market Intelligence

作者 agenthc · GitHub ↗ · v2.4.0 · MIT-0
cross-platform ✓ 安全检测通过
1679
总下载
6
收藏
4
当前安装
16
版本数
在 OpenClaw 中安装
/install agenthc-market-intelligence
功能描述
Market data API for AI agents. Equities, fixed income, crypto, and macro. Bitcoin Lightning micropayments.
使用说明 (SKILL.md)

Stock Market Intelligence

Market data API for AI agents and developers. Covers equities, fixed income, crypto, and macro. Real-time alerts via webhook and Discord. Bitcoin Lightning micropayments. Built by @traderhc.

Setup

For AI Agents

export AGENTHC_API_KEY=$(curl -s -X POST "https://api.traderhc.com/api/v1/register" \
  -H "Content-Type: application/json" \
  -d '{"name": "MyAgent"}' | jq -r '.api_key')

Free, no KYC, no credit card. Query any free endpoint:

curl -s "https://api.traderhc.com/api/v1/data/overview" \
  -H "X-API-Key: $AGENTHC_API_KEY" | jq '.data'

Interactive Setup

bash scripts/setup.sh

Non-Interactive (CI/scripts)

export AGENTHC_API_KEY=$(bash scripts/setup.sh --auto)

What's Available

Tier Coverage Cost
Free Market overview, educational content $0
Premium Equities, fixed income, macro, crypto, volatility ~$50/mo
Institutional Full platform access with advanced analytics ~$500/mo

See api.traderhc.com/docs for the full endpoint catalog.

Agent-Optimized Format

Use format=agent for actionable signals:

curl -s "https://api.traderhc.com/api/v1/data/overview?format=agent" \
  -H "X-API-Key: $AGENTHC_API_KEY" | jq '.signals'

Compact Format

Use format=compact for reduced token usage:

curl -s "https://api.traderhc.com/api/v1/data/overview?format=compact" \
  -H "X-API-Key: $AGENTHC_API_KEY" | jq '.'

Batch Queries (Premium+)

Query multiple endpoints in one request:

curl -s -X POST "https://api.traderhc.com/api/v1/data/batch" \
  -H "X-API-Key: $AGENTHC_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"endpoints": ["overview", "fixed_income", "macro"]}' | jq '.'

Alerts

Subscribe to real-time market alerts via webhook or Discord:

# List available alert types
curl -s "https://api.traderhc.com/api/v1/alerts" \
  -H "X-API-Key: $AGENTHC_API_KEY" | jq '.alerts'

# Subscribe via webhook
curl -s -X POST "https://api.traderhc.com/api/v1/alerts/subscribe" \
  -H "X-API-Key: $AGENTHC_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"type": "market_events", "callback_url": "https://your-agent.com/webhook"}' | jq '.'

Lightning Payment (L402)

For per-request payment without registration:

  1. Request a premium endpoint without auth
  2. Receive 402 response with Lightning invoice
  3. Pay the invoice (any Lightning wallet)
  4. Re-request with Authorization: L402 \x3Cmacaroon>:\x3Cpreimage>

Pricing

Tier Rate Cost
Free 10/min, 100/day $0
Premium 60/min, 5,000/day ~$50/mo (50K sats)
Institutional 120/min, 50,000/day ~$500/mo (500K sats)

Payment via Bitcoin Lightning Network. Instant settlement, no KYC.

Disclaimer

All data and analysis is for educational and informational purposes only. Not financial advice. Not a registered investment advisor. Always do your own research.

安全使用建议
This skill appears to be a straightforward client for api.traderhc.com: it will contact that external service to register an API key and to fetch market data and alerts. Before installing, verify you trust the domain and its privacy/terms (api.traderhc.com). Note the setup flow prints an API key that you can export into your environment — the script does not automatically persist it but recommends you add it to your shell config if you choose; do not paste that key into places you don't control. Alerts can require webhooks to your agent endpoint (ensure you only provide callback URLs you control). The Lightning (L402) flow may require paying invoices for premium endpoints — be prepared for on-chain micropayments if you use premium features. If you are uncertain, run the scripts in an isolated environment or inspect the POST responses from /api/v1/register before exporting the key.
功能分析
Type: OpenClaw Skill Name: agenthc-market-intelligence Version: 2.4.0 The skill bundle provides a legitimate interface for a market intelligence API (api.traderhc.com). The included shell scripts (agenthc.sh and setup.sh) contain appropriate input sanitization to prevent injection attacks and follow standard practices for API registration and data retrieval without any evidence of malicious intent, data exfiltration, or persistence mechanisms.
能力评估
Purpose & Capability
Name/description (market data, alerts, Lightning payments) match the included README, SKILL.md and two helper scripts. Required binaries (curl, jq, python3) and the single env var AGENTHC_API_KEY are proportionate and expected for a CLI/API client.
Instruction Scope
SKILL.md and scripts only instruct network calls to https://api.traderhc.com (register, data endpoints, alerts). They do not read unrelated system files, other env vars, or modify system configuration. Setup prints the API key and suggests the user add it to shell config but does not itself write to system files.
Install Mechanism
No install spec; code is instruction-only plus small shell scripts included in the bundle. No remote arbitrary code downloads or archive extraction are requested.
Credentials
Only AGENTHC_API_KEY is required and declared as the primary credential; that matches the behavior (register endpoint issues an API key, subsequent requests use it). No unrelated secrets or multiple credentials are requested.
Persistence & Privilege
always is false and the skill does not attempt to persist or alter other skills or global agent settings. Setup suggests a manual export into shell config but does not perform automatic persistent changes.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install agenthc-market-intelligence
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /agenthc-market-intelligence 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v2.4.0
Strip proprietary details from public listing. Remove MIT license.
v2.3.0
Free tier now includes regime detection with transition probabilities. Fixed credit cycle alert pipeline. All 7 alert packages verified live.
v2.1.1
- Documentation updated in SKILL.md with improved formatting and extended details. - No code or API changes; documentation only. - All references and instructions remain the same, now presented more clearly for users.
v2.1.0
- Added support for 7 named alert packages, enabling enriched market intelligence delivery via webhook and Discord. - Updated description and documentation to reflect new alert packages and real-time alerting capabilities. - Enhanced module listings and summary to clarify the number of included intelligence modules, encoded skills, and alert packages. - Expanded details on real-time alerts for both AI agents and humans. - General documentation improvements and reorganization for clarity.
v2.0.1
Fix display name
v2.0.0
Major update: 85 intelligence modules (40 encoded intelligence skills), 73 MCP tools, institutional-grade pattern recognition with historically-calibrated forward returns
v1.1.0
Security scan fixes: declared python3 dep, proper homepage URL, removed dotfile writes
v1.0.9
Zero-friction setup: one curl command for AI agents, --auto flag for scripts, interactive mode for humans
v1.0.8
Added one-command setup script — bash scripts/setup.sh handles registration and API key automatically
v1.0.7
Added discovery tags for finance, trading, stocks, bitcoin, macro, options, and more
v1.0.6
- Description updated to emphasize stock market, trading intelligence, and Bitcoin Lightning micropayments. - Minor edit to homepage and heading for consistency with the new skill name. - No functional or API changes; documentation updates and metadata improvements only.
v1.0.5
n/a
v1.0.4
Updated to 47 modules. Added input sanitization, options intelligence, volatility surface, SEC EDGAR, and more.
v1.0.3
## agenthc-market-intelligence v1.0.3 Changelog - Added initial SKILL.md documentation for "Stock Market Intelligence," detailing setup, available modules, and usage instructions. - Added agenthc.sh script in the scripts directory.
v1.0.2
Major update and rebranding with new features and modules. - Renamed skill to "stock-market-intelligence" and updated description to reflect broader coverage (now 47 modules). - Added new modules: Educational Content, Volatility Surface, Options Intelligence, and FedWatch. - Introduced options flow and unusual options activity tracking. - Switched event streaming from SSE to webhooks with HMAC authentication and expanded event types. - Homepage link updated to https://x.com/traderhc. - Free/premium/institutional module access breakdown revised, module details and labeling improved. - Numerous documentation updates and new sample queries reflecting expanded offerings.
v1.0.0
Initial release: 46 market intelligence modules, Lightning payments, SSE streaming, agent-optimized format
元数据
Slug agenthc-market-intelligence
版本 2.4.0
许可证 MIT-0
累计安装 4
当前安装数 4
历史版本数 16
常见问题

Stock Market Intelligence 是什么?

Market data API for AI agents. Equities, fixed income, crypto, and macro. Bitcoin Lightning micropayments. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 1679 次。

如何安装 Stock Market Intelligence?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install agenthc-market-intelligence」即可一键安装,无需额外配置。

Stock Market Intelligence 是免费的吗?

是的,Stock Market Intelligence 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Stock Market Intelligence 支持哪些平台?

Stock Market Intelligence 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Stock Market Intelligence?

由 agenthc(@traderhc123)开发并维护,当前版本 v2.4.0。

💬 留言讨论