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.
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 {}.{ "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.
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.[write] change Alpha Vantage state — confirm the exact payload and effect with the user before running.[destructive] remove or overwrite data — always confirm the target and get explicit approval first.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
```
```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
```
OOMOL_INSUFFICIENT_CREDIT — billing stop. Recharge at https://console.oomol.com/billing/token-recharge before retrying.共 2 个版本