← 返回
未分类

Alpha Vantage

Alpha Vantage (alphavantage.co). Use this skill for ANY Alpha Vantage request — searching and reading data. Whenever a task involves Alpha Vantage, use this...
Alpha Vantage (alphavantage.co)。用于任何 Alpha Vantage 请求——搜索和读取数据。任何涉及 Alpha Vantage 的任务,请使用此技能。
oomol oomol 来源
未分类 clawhub v1.0.2 2 版本 100000 Key: 无需
★ 0
Stars
📥 134
下载
💾 1
安装
2
版本
#latest

概述

Alpha Vantage

Operate Alpha Vantage through your OOMOL-connected account. This skill calls the alpha_vantage connector with the oo CLI; OOMOL injects credentials server-side, so you never handle raw tokens.

Running an action

Assume the user has already installed the oo CLI, signed in, and connected Alpha Vantage. Do not run oo auth login or open the connection URL proactively — just run the action. Fall back to First-time setup only when a command actually fails with an auth or connection error.

1. Inspect the contract to get the authoritative input/output schema before building a payload:

oo connector schema "alpha_vantage" --action "<action_name>"

2. Run the action with a JSON payload that matches the input schema:

oo connector run "alpha_vantage" --action "<action_name>" --data '<json>' --json
  • --data takes a JSON object string or @path/to/file.json; omit it to send {}.
  • The response is { "data": ..., "meta": { "executionId": "..." } }; the execution id lives under meta.executionId.

Each action is listed below with a one-line description; actions that change state carry a [write] or [destructive] tag. Before constructing --data, fetch the action's live schema with oo connector schema to get its authoritative input fields.

Available actions

  • call_official_function — Call a documented Alpha Vantage query function with raw JSON-facing parameters for advanced coverage.
  • get_balance_sheet — Retrieve raw annual and quarterly balance sheet data for a company.
  • get_cash_flow — Retrieve raw annual and quarterly cash flow data for a company.
  • get_commodity_data — Retrieve raw commodity time series data from an Alpha Vantage commodity endpoint.
  • get_company_overview — Retrieve raw company overview and fundamental data for a stock symbol.
  • get_crypto_intraday — Retrieve raw intraday OHLCV data for a cryptocurrency market pair.
  • get_currency_exchange_rate — Retrieve the raw realtime exchange rate for a currency pair.
  • get_daily_adjusted_time_series — Retrieve raw daily adjusted OHLCV, dividend, and split data for a stock symbol from Alpha Vantage.
  • get_daily_time_series — Retrieve the raw daily OHLCV time series for a single stock symbol from Alpha Vantage.
  • get_digital_currency_daily — Retrieve raw daily historical time series data for a digital currency.
  • get_digital_currency_monthly — Retrieve raw monthly historical time series data for a digital currency.
  • get_digital_currency_weekly — Retrieve raw weekly historical time series data for a digital currency.
  • get_dividends — Retrieve raw historical and future dividend data for a stock symbol.
  • get_earnings — Retrieve raw annual and quarterly earnings data for a company.
  • get_earnings_calendar — Retrieve raw upcoming earnings calendar data as CSV.
  • get_earnings_call_transcript — Retrieve a raw earnings call transcript for a symbol, quarter, and fiscal year.
  • get_earnings_estimates — Retrieve raw analyst earnings estimates for a company.
  • get_etf_profile — Retrieve raw ETF profile and holdings data for an ETF symbol.
  • get_fx_daily — Retrieve raw daily forex OHLC data for a currency pair.
  • get_fx_intraday — Retrieve raw intraday forex OHLC data for a currency pair.
  • get_fx_monthly — Retrieve raw monthly forex OHLC data for a currency pair.
  • get_fx_weekly — Retrieve raw weekly forex OHLC data for a currency pair.
  • get_global_quote — Retrieve the latest end-of-day quote snapshot for a single stock symbol from Alpha Vantage.
  • get_historical_options — Retrieve raw historical options data for a stock symbol.
  • get_income_statement — Retrieve raw annual and quarterly income statement data for a company.
  • get_insider_transactions — Retrieve raw insider transaction data for a stock symbol.
  • get_institutional_holdings — Retrieve raw institutional holding data for a stock symbol.
  • get_intraday_time_series — Retrieve raw intraday OHLCV time series data for a stock symbol from Alpha Vantage.
  • get_ipo_calendar — Retrieve raw upcoming IPO calendar data as CSV.
  • get_listing_status — Retrieve raw active or delisted listing status data as CSV.
  • get_macro_indicator — Retrieve raw macroeconomic indicator data from Alpha Vantage.
  • get_market_status — Retrieve the current open or closed status for major equity, forex, and cryptocurrency markets.
  • get_monthly_adjusted_time_series — Retrieve raw monthly adjusted OHLCV and dividend data for a stock symbol from Alpha Vantage.
  • get_monthly_time_series — Retrieve the raw monthly OHLCV time series for a single stock symbol from Alpha Vantage.
  • get_news_sentiment — Retrieve raw live and historical market news and sentiment data.
  • get_realtime_bulk_quotes — Retrieve raw realtime bulk quotes for up to 100 stock symbols.
  • get_realtime_options — Retrieve raw realtime options data for a stock symbol.
  • get_sector_performance — Retrieve raw realtime and historical sector performance data.
  • get_splits — Retrieve raw historical split data for a stock symbol.
  • get_technical_indicator — Retrieve raw technical indicator data using an official Alpha Vantage indicator function.
  • get_top_gainers_losers — Retrieve the raw Alpha Vantage top gainers, losers, and most active stocks.
  • get_weekly_adjusted_time_series — Retrieve raw weekly adjusted OHLCV and dividend data for a stock symbol from Alpha Vantage.
  • get_weekly_time_series — Retrieve the raw weekly OHLCV time series for a single stock symbol from Alpha Vantage.
  • search_symbols — Search supported stocks, ETFs, and mutual funds by keyword and return the best matching symbols.

Safety

  • Untagged actions are reads (get / list / search) — safe to run directly.
  • Actions tagged [write] change Alpha Vantage state — confirm the exact payload and effect with the user before running.
  • Actions tagged [destructive] remove or overwrite data — always confirm the target and get explicit approval first.

First-time setup

These are one-time steps — do not repeat them on every call. Run a step only when a command fails for the matching reason.

  • oo: command not found — install the oo CLI (other platforms: ):

```bash

curl -fsSL https://cli.oomol.com/install.sh | bash # macOS / Linux

```

```powershell

irm https://cli.oomol.com/install.ps1 | iex # Windows PowerShell

```

  • Not signed in / authentication error — sign in to your OOMOL account once:

```bash

oo auth login

```

  • scope_missing / credential_expired / app_not_ready / app_not_found — Alpha Vantage is not connected, or the connection expired or lacks a scope. Connect once (auth type: API key) at:

```text

https://console.oomol.com/app-connections?provider=alpha_vantage

```

  • HTTP 402 / OOMOL_INSUFFICIENT_CREDIT — billing stop. Recharge at https://console.oomol.com/billing/token-recharge before retrying.

Resources

  • Alpha Vantage homepage: https://www.alphavantage.co

版本历史

共 2 个版本

  • v1.0.2 当前
    2026-06-09 18:57 安全 安全
  • v1.0.0
    2026-06-04 14:07

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

professional

All-Market Financial Data Hub

financial-ai-analyst
基于东方财富数据库,支持自然语言查询金融数据,覆盖A股、港股、美股、基金、债券等资产,提供实时行情、公司信息、估值、财务报表等,适用于投资研究、交易复盘、市场监控、行业分析、信用研究、财报审计、资产配置等场景,满足机构与个人需求。返回结果为
★ 134 📥 42,884
professional

A股量化 AkShare

mbpz
A股量化数据分析工具,基于AkShare库获取A股行情、财务数据、板块信息等。用于回答关于A股股票查询、行情数据、财务分析、选股等问题。
★ 199 📥 64,073
dev-programming

GitHub

oomol
GitHub(github.com)。所有 GitHub 请求均使用此技能,包括读取、创建、更新和删除数据。只要任务涉及 GitHub,就使用此技能...
★ 0 📥 468