← 返回 Skills 市场
luohy15

Global Stock Analysis

作者 luohy15 · GitHub ↗ · v0.0.11 · MIT-0
cross-platform ✓ 安全检测通过
416
总下载
1
收藏
0
当前安装
11
版本数
在 OpenClaw 中安装
/install global-stock-analysis
功能描述
Global stock analysis (US, China & EU stock markets, technicals, fundamentals, etc) powered by NASDAQ's official data provider Alpha Vantage. 全球股票分析(包括美股、A股和...
使用说明 (SKILL.md)

Global Stock Analysis

Use these workflows to research stocks, evaluate companies, read technical signals, and monitor macro conditions — all from the terminal.

Tutorial

Watch the end-to-end installation tutorial, from procuring a fresh Mac VM (or Mac mini), to installing OpenClaw, to installing and using the skill: https://www.youtube.com/watch?v=Z6DjYKN4uos

Setup

  1. Install: pip install marketdata-cli or uv tool install marketdata-cli --force or run directly with uvx marketdata-cli
  2. Set API key (one of):
    • export ALPHAVANTAGE_API_KEY=your_key
    • Add ALPHAVANTAGE_API_KEY=your_key to a .env file
    • Pass -k your_key on each command

Get a free key at https://www.alphavantage.co/support/#api-key

Workflows

1. Quick Stock Lookup

Get a snapshot of where a stock is right now — price, recent history, and news.

marketdata-cli global_quote AAPL
marketdata-cli time_series_daily AAPL
marketdata-cli news_sentiment --tickers AAPL
# Optional: intraday detail
marketdata-cli time_series_intraday AAPL --interval 5min

2. Fundamental Analysis

Evaluate a company's financial health: overview, financials, earnings, dividends, and insider activity. See fundamentals.md for the full step-by-step guide.

3. Technical Analysis

Assess trend, momentum, volatility, and volume signals. See technicals.md for the full step-by-step guide.

4. Macro & Market Overview

Check economic conditions, commodities, market movers, and upcoming events. See macro.md for the full step-by-step guide.

5. Sector / Multi-Stock Comparison

Compare fundamentals or technicals across multiple tickers by running the same commands for each symbol:

marketdata-cli company_overview AAPL
marketdata-cli company_overview MSFT
marketdata-cli company_overview GOOGL

See comparison.md for more examples.

6. Forex & Crypto

Exchange rates and price history for currencies and cryptocurrencies. See forex-crypto.md for the full step-by-step guide.

Quick Reference

Run marketdata-cli --help for the full list of 100+ commands, or marketdata-cli \x3Ccommand> --help for any specific command.

Flag Description
-k, --api-key API key (overrides env var)
-v, --verbose Enable verbose logging
-h, --help Show help for any command
  • Most stock commands accept a positional SYMBOL argument (e.g., marketdata-cli global_quote AAPL)
  • Forex commands use --from_symbol / --to_symbol or --from_currency / --to_currency
  • Technical indicators default to daily interval if not specified
安全使用建议
This skill appears to do what it says: it runs a marketdata-cli client against Alpha Vantage and needs your Alpha Vantage API key. Before installing/use: (1) verify the marketdata-cli package on PyPI/GitHub to ensure it's the legitimate client you expect, (2) keep your ALPHAVANTAGE_API_KEY secret and avoid pasting it into public logs, (3) consider running the pip install in an isolated environment (virtualenv/container) if you have supply-chain concerns, and (4) review marketdata-cli's source or documentation to confirm it doesn't exfiltrate additional data or require unrelated credentials.
功能分析
Type: OpenClaw Skill Name: global-stock-analysis Version: 0.0.11 The skill bundle is a legitimate integration for the Alpha Vantage API, providing workflows for stock, forex, and crypto analysis via the 'marketdata-cli' tool. All instructions in SKILL.md and the reference files (e.g., fundamentals.md, technicals.md) are well-documented, align with the stated purpose, and contain no evidence of malicious intent, data exfiltration, or harmful prompt injection.
能力标签
cryptorequires-sensitive-credentials
能力评估
Purpose & Capability
Name/description (global stock analysis) align with required binary (marketdata-cli) and required env var (ALPHAVANTAGE_API_KEY). All requested capabilities are coherent with fetching market data from Alpha Vantage.
Instruction Scope
SKILL.md directs the agent to run marketdata-cli commands and to set ALPHAVANTAGE_API_KEY; it does not instruct reading unrelated system files, other credentials, or sending data to unknown endpoints. Workflows are limited to market-data commands and references.
Install Mechanism
This is an instruction-only skill (no install spec). SKILL.md suggests installing marketdata-cli via pip (pip install marketdata-cli). Installing a third-party pip package is a normal step but does introduce the usual supply-chain risk—users should verify the pip package's origin, maintainers, and trustworthiness before installation.
Credentials
Only ALPHAVANTAGE_API_KEY is required, which is proportional and necessary for Alpha Vantage API access. No unrelated secrets or multiple credentials are requested.
Persistence & Privilege
always is false and the skill does not request elevated or persistent platform-wide privileges. It does not modify other skills or system configs.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install global-stock-analysis
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /global-stock-analysis 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.0.11
- Added a link to a step-by-step installation and usage tutorial video in the documentation. - Bumped version to 0.0.11 in the metadata. - No changes to code or workflows; update is limited to improved documentation.
v0.0.10
- Updated the Chinese description for improved clarity and consistency. - Bumped version metadata to 0.0.10 in SKILL.md.
v0.0.9
- Updated description to emphasize NASDAQ's official data provider Alpha Vantage. - Minor language and formatting improvements in documentation. - Version bumped to 0.0.9.
v0.0.8
- Updated description to highlight Alpha Vantage as the data provider. - Minor simplification of the Chinese description. - Bumped version to 0.0.8 in metadata. - No changes to functionality or usage instructions.
v0.0.7
- Updated skill version to 0.0.7. - Expanded the description to include a Chinese translation of main features. - No workflow or usage changes; documentation remains largely the same.
v0.0.6
- Expanded description to specify coverage of US, China, Canada, and EU stock prices. - Updated version metadata to 0.0.6.
v0.0.5
- Updated description to specify Alpha Vantage as the data provider licensed by NASDAQ. - Improved clarity about realtime and historical stock price coverage. - Bumped metadata version to 0.0.5.
v0.0.4
- Updated skill description for clarity and brevity. - Bumped version to 0.0.4. - No functional changes made—documentation improvements only.
v0.0.3
- Added an openclaw section specifying required binaries and environment variables for improved compatibility and installation. - Updated the version number to 0.0.3. - Removed obsolete compatibility sections and unified specification under metadata. - No changes to core functionality or workflows.
v0.0.2
- Added explicit env_vars and binaries sections to document environment variables and required binaries. - Included homepage and source repository links in metadata. - Updated version to 0.0.2 in metadata. - No workflow or usage changes; documentation clarified requirements and setup.
v0.0.1
Initial release of global-stock-analysis. - Provides step-by-step workflows for stock lookups, fundamental and technical analysis, macro market views, sector comparisons, and forex/crypto research. - Requires marketdata-cli and an Alpha Vantage API key. - Includes example commands and quick setup instructions. - References detailed guides for each analysis workflow. - Offers quick reference table of command-line flags and usage tips.
元数据
Slug global-stock-analysis
版本 0.0.11
许可证 MIT-0
累计安装 1
当前安装数 0
历史版本数 11
常见问题

Global Stock Analysis 是什么?

Global stock analysis (US, China & EU stock markets, technicals, fundamentals, etc) powered by NASDAQ's official data provider Alpha Vantage. 全球股票分析(包括美股、A股和... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 416 次。

如何安装 Global Stock Analysis?

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

Global Stock Analysis 是免费的吗?

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

Global Stock Analysis 支持哪些平台?

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

谁开发了 Global Stock Analysis?

由 luohy15(@luohy15)开发并维护,当前版本 v0.0.11。

💬 留言讨论