← All skills
Tencent SkillHub · Data Analysis

Fin Intel Hub

Access global financial data including SEC filings, Asian and US stock markets, crypto on-chain metrics, financial news sentiment, and macroeconomic indicators.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Access global financial data including SEC filings, Asian and US stock markets, crypto on-chain metrics, financial news sentiment, and macroeconomic indicators.

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, README_CN.md, SAFETY.md, SECURITY.md, SKILL.md, scripts/crypto_onchain.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.2

Documentation

ClawHub primary doc Primary doc: SKILL.md 9 sections Open source page

Fin Intel Hub

Financial intelligence hub for OpenClaw. Supports global markets including US, China, Hong Kong, Taiwan, Japan, and Korea.

Features

SEC Filings: Retrieve 10-K, 10-Q, 8-K filings from EDGAR Global Market Data: US stocks (Alpha Vantage) + Asian markets (Yahoo Finance) Asian Markets: Hong Kong, Tokyo, Taiwan, Korea, Shanghai, Shenzhen Crypto On-Chain: Monitor wallet flows, exchange inflows/outflows News Sentiment: Aggregate sentiment from financial news sources Macro Dashboard: Fed rates, CPI, unemployment data

API Keys (Optional)

All API keys are optional. The skill works without any keys using Yahoo Finance for stock data. Add keys to unlock additional features: ServicePurposeFree TierRequired?Yahoo FinanceGlobal/Asian stocks, indices, futures, commoditiesUnlimitedNoAlpha VantageUS stocks, earnings25 calls/dayOptionalNewsAPIFinancial news sentiment100 requests/dayOptionalFRED APIMacroeconomic dataUnlimitedOptionalDeFiLlamaCrypto on-chain dataUnlimitedNo

SEC Filings

from scripts.sec_filings import get_recent_filings # Get last 5 10-K filings for Apple filings = get_recent_filings(ticker="AAPL", form="10-K", limit=5)

Stock Prices

from scripts.market_data import get_price_history # Get 30-day price history prices = get_price_history(ticker="TSLA", days=30)

Crypto Data

from scripts.crypto_onchain import get_exchange_flows # Monitor exchange inflows/outflows flows = get_exchange_flows(exchange="binance", days=7)

Scripts Reference

scripts/sec_filings.py - SEC EDGAR integration scripts/market_data.py - US stock prices and earnings (Alpha Vantage) scripts/yahoo_finance.py - Global/Asian stock prices (Yahoo Finance) scripts/crypto_onchain.py - Blockchain data via DeFiLlama/CoinGecko scripts/sentiment_news.py - News sentiment analysis scripts/macro_data.py - FRED macroeconomic indicators

Asian Market Examples

from scripts.yahoo_finance import get_hong_kong_stock, get_tokyo_stock, get_taiwan_stock # Hong Kong - Tencent prices = get_hong_kong_stock("0700", period="1y") # Tokyo - Toyota prices = get_tokyo_stock("7203", period="1y") # Taiwan - TSMC prices = get_taiwan_stock("2330", period="1y")

Indices & Futures Examples

from scripts.yahoo_finance import get_sp500, get_nikkei225, get_vix from scripts.yahoo_finance import get_crude_oil, get_gold, list_available_indices # Global indices (15+ available) sp500 = get_sp500(period="1y") nasdaq = get_nasdaq(period="1y") nikkei = get_nikkei225(period="1y") hang_seng = get_hang_seng(period="1y") vix = get_vix(period="1mo") # Fear index # Futures (15+ available) oil_futures = get_crude_oil(period="6mo") gold_futures = get_gold(period="6mo") sp_futures = get_sp500_futures(period="1mo") natural_gas = get_natural_gas(period="6mo") # List all available indices = list_available_indices() futures = list_available_futures() For detailed API documentation and data schemas, see references/.

Category context

Data access, storage, extraction, analysis, reporting, and insight generation.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
5 Docs1 Scripts
  • SKILL.md Primary doc
  • README_CN.md Docs
  • README.md Docs
  • SAFETY.md Docs
  • SECURITY.md Docs
  • scripts/crypto_onchain.py Scripts