← Back to Skills Marketplace
traderhc123

Stock Market Intelligence

by agenthc · GitHub ↗ · v2.4.0 · MIT-0
cross-platform ✓ Security Clean
1679
Downloads
6
Stars
4
Active Installs
16
Versions
Install in OpenClaw
/install agenthc-market-intelligence
Description
Market data API for AI agents. Equities, fixed income, crypto, and macro. Bitcoin Lightning micropayments.
README (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.

Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install agenthc-market-intelligence
  3. After installation, invoke the skill by name or use /agenthc-market-intelligence
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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
Metadata
Slug agenthc-market-intelligence
Version 2.4.0
License MIT-0
All-time Installs 4
Active Installs 4
Total Versions 16
Frequently Asked Questions

What is Stock Market Intelligence?

Market data API for AI agents. Equities, fixed income, crypto, and macro. Bitcoin Lightning micropayments. It is an AI Agent Skill for Claude Code / OpenClaw, with 1679 downloads so far.

How do I install Stock Market Intelligence?

Run "/install agenthc-market-intelligence" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Stock Market Intelligence free?

Yes, Stock Market Intelligence is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Stock Market Intelligence support?

Stock Market Intelligence is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Stock Market Intelligence?

It is built and maintained by agenthc (@traderhc123); the current version is v2.4.0.

💬 Comments