KosmoKrator

data

Alpha Vantage Lua API for KosmoKrator Agents

Agent-facing Lua documentation and function reference for the Alpha Vantage KosmoKrator integration.

Lua Namespace

Agents call this integration through app.integrations.alpha_vantage.*. Use lua_read_doc("integrations.alpha-vantage") inside KosmoKrator to discover the same reference at runtime.

Call Lua from the Headless CLI

Use kosmo integrations:lua when a shell script, CI job, cron job, or another coding CLI should run a deterministic Alpha Vantage workflow without starting an interactive agent session.

Inline Lua call
kosmo integrations:lua --eval 'dump(app.integrations.alpha_vantage.ad({}))' --json
Read Lua docs headlessly
kosmo integrations:lua --eval 'print(docs.read("alpha-vantage"))' --json
kosmo integrations:lua --eval 'print(docs.read("alpha-vantage.ad"))' --json

Workflow file

Put repeatable logic in a Lua file, then execute it with JSON output for the calling process.

workflow.lua
local alpha_vantage = app.integrations.alpha_vantage
local result = alpha_vantage.ad({})

dump(result)
Run the workflow
kosmo integrations:lua workflow.lua --json
kosmo integrations:lua workflow.lua --force --json
Namespace note. integrations:lua exposes app.integrations.alpha_vantage, app.mcp.*, docs.*, json.*, and regex.*. Use app.integrations.alpha_vantage.default.* or app.integrations.alpha_vantage.work.* when you configured named credential accounts.

MCP-only Lua

If the script only needs configured MCP servers and does not need Alpha Vantage, use the narrower mcp:lua command.

MCP Lua command
# Use mcp:lua for MCP-only scripts; use integrations:lua for this integration namespace.
kosmo mcp:lua --eval 'dump(mcp.servers())' --json

Agent-Facing Lua Docs

This is the rendered version of the full Lua documentation exposed to agents when they inspect the integration namespace.

Alpha Vantage

Namespace: alpha_vantage

The Alpha Vantage integration uses the official query API at https://www.alphavantage.co/query. Every tool maps to one official function value and requires an Alpha Vantage API key.

Common Tool Families

  • Equity time series: alpha_vantage_time_series_intraday, alpha_vantage_time_series_daily, weekly/monthly variants, alpha_vantage_global_quote, and alpha_vantage_realtime_bulk_quotes.
  • Discovery and market status: alpha_vantage_symbol_search, alpha_vantage_listing_status, and alpha_vantage_market_status.
  • Options: realtime and historical options, put/call ratios, and volume/open-interest ratios.
  • Intelligence: alpha_vantage_news_sentiment, earnings-call transcripts, top gainers/losers, and analytics windows.
  • Fundamentals: overview, ETF profile, statements, earnings, estimates, dividends, splits, insider transactions, institutional holdings, and shares outstanding.
  • FX and crypto: currency exchange rates, FX time series, crypto intraday, and digital currency daily/weekly/monthly endpoints.
  • Commodities and economics: WTI, Brent, natural gas, metals, agriculture, GDP, CPI, inflation, unemployment, treasury yields, and other macro indicators.
  • Technical indicators: SMA, EMA, RSI, MACD, BBANDS, VWAP, STOCH, ADX, ATR, OBV, and the other Alpha Vantage indicator functions.

Notes For Agents

Free Alpha Vantage keys are rate limited, and some endpoints require premium entitlement. If the API returns a Note, Information, or Error Message, the tool reports that as an error instead of returning a misleading success.

Many endpoints support datatype = "csv". CSV responses are returned as { body, status, content_type }. JSON responses are returned as the decoded Alpha Vantage payload.

Use query for endpoint-specific parameters that are not listed directly by the tool. Arrays are sent as comma-separated values.

Examples use fake values:

local quote = alpha_vantage.global_quote({
  symbol = "IBM"
})

local bars = alpha_vantage.time_series_intraday({
  symbol = "IBM",
  interval = "5min",
  outputsize = "compact"
})

local news = alpha_vantage.news_sentiment({
  tickers = "IBM",
  topics = "technology",
  limit = 10
})

local rsi = alpha_vantage.rsi({
  symbol = "IBM",
  interval = "daily",
  time_period = 14,
  series_type = "close"
})
Raw agent markdown
# Alpha Vantage

Namespace: `alpha_vantage`

The Alpha Vantage integration uses the official query API at `https://www.alphavantage.co/query`. Every tool maps to one official `function` value and requires an Alpha Vantage API key.

## Common Tool Families

- Equity time series: `alpha_vantage_time_series_intraday`, `alpha_vantage_time_series_daily`, weekly/monthly variants, `alpha_vantage_global_quote`, and `alpha_vantage_realtime_bulk_quotes`.
- Discovery and market status: `alpha_vantage_symbol_search`, `alpha_vantage_listing_status`, and `alpha_vantage_market_status`.
- Options: realtime and historical options, put/call ratios, and volume/open-interest ratios.
- Intelligence: `alpha_vantage_news_sentiment`, earnings-call transcripts, top gainers/losers, and analytics windows.
- Fundamentals: overview, ETF profile, statements, earnings, estimates, dividends, splits, insider transactions, institutional holdings, and shares outstanding.
- FX and crypto: currency exchange rates, FX time series, crypto intraday, and digital currency daily/weekly/monthly endpoints.
- Commodities and economics: WTI, Brent, natural gas, metals, agriculture, GDP, CPI, inflation, unemployment, treasury yields, and other macro indicators.
- Technical indicators: SMA, EMA, RSI, MACD, BBANDS, VWAP, STOCH, ADX, ATR, OBV, and the other Alpha Vantage indicator functions.

## Notes For Agents

Free Alpha Vantage keys are rate limited, and some endpoints require premium entitlement. If the API returns a `Note`, `Information`, or `Error Message`, the tool reports that as an error instead of returning a misleading success.

Many endpoints support `datatype = "csv"`. CSV responses are returned as `{ body, status, content_type }`. JSON responses are returned as the decoded Alpha Vantage payload.

Use `query` for endpoint-specific parameters that are not listed directly by the tool. Arrays are sent as comma-separated values.

Examples use fake values:

```lua
local quote = alpha_vantage.global_quote({
  symbol = "IBM"
})

local bars = alpha_vantage.time_series_intraday({
  symbol = "IBM",
  interval = "5min",
  outputsize = "compact"
})

local news = alpha_vantage.news_sentiment({
  tickers = "IBM",
  topics = "technology",
  limit = 10
})

local rsi = alpha_vantage.rsi({
  symbol = "IBM",
  interval = "daily",
  time_period = 14,
  series_type = "close"
})
```
Metadata-derived Lua example
local result = app.integrations.alpha_vantage.ad({})
print(result)

Functions

adosc Read

Fetch Alpha Vantage technical indicator data for ADOSC.

Lua path
app.integrations.alpha_vantage.adosc
Full name
alpha-vantage.alpha_vantage_adosc
ParameterTypeRequiredDescription
No parameters.
adx Read

Fetch Alpha Vantage technical indicator data for ADX.

Lua path
app.integrations.alpha_vantage.adx
Full name
alpha-vantage.alpha_vantage_adx
ParameterTypeRequiredDescription
No parameters.
adxr Read

Fetch Alpha Vantage technical indicator data for ADXR.

Lua path
app.integrations.alpha_vantage.adxr
Full name
alpha-vantage.alpha_vantage_adxr
ParameterTypeRequiredDescription
No parameters.
all_commodities Read

Fetch Alpha Vantage commodity data for ALL_COMMODITIES.

Lua path
app.integrations.alpha_vantage.all_commodities
Full name
alpha-vantage.alpha_vantage_all_commodities
ParameterTypeRequiredDescription
No parameters.
aluminum Read

Fetch Alpha Vantage commodity data for ALUMINUM.

Lua path
app.integrations.alpha_vantage.aluminum
Full name
alpha-vantage.alpha_vantage_aluminum
ParameterTypeRequiredDescription
No parameters.
analytics_fixed_window Read

Fetch Alpha Vantage intelligence data for ANALYTICS_FIXED_WINDOW.

Lua path
app.integrations.alpha_vantage.analytics_fixed_window
Full name
alpha-vantage.alpha_vantage_analytics_fixed_window
ParameterTypeRequiredDescription
No parameters.
analytics_sliding_window Read

Fetch Alpha Vantage intelligence data for ANALYTICS_SLIDING_WINDOW.

Lua path
app.integrations.alpha_vantage.analytics_sliding_window
Full name
alpha-vantage.alpha_vantage_analytics_sliding_window
ParameterTypeRequiredDescription
No parameters.
apo Read

Fetch Alpha Vantage technical indicator data for APO.

Lua path
app.integrations.alpha_vantage.apo
Full name
alpha-vantage.alpha_vantage_apo
ParameterTypeRequiredDescription
No parameters.
aroon Read

Fetch Alpha Vantage technical indicator data for AROON.

Lua path
app.integrations.alpha_vantage.aroon
Full name
alpha-vantage.alpha_vantage_aroon
ParameterTypeRequiredDescription
No parameters.
aroonosc Read

Fetch Alpha Vantage technical indicator data for AROONOSC.

Lua path
app.integrations.alpha_vantage.aroonosc
Full name
alpha-vantage.alpha_vantage_aroonosc
ParameterTypeRequiredDescription
No parameters.
atr Read

Fetch Alpha Vantage technical indicator data for ATR.

Lua path
app.integrations.alpha_vantage.atr
Full name
alpha-vantage.alpha_vantage_atr
ParameterTypeRequiredDescription
No parameters.
balance_sheet Read

Fetch Alpha Vantage company fundamental data for BALANCE_SHEET.

Lua path
app.integrations.alpha_vantage.balance_sheet
Full name
alpha-vantage.alpha_vantage_balance_sheet
ParameterTypeRequiredDescription
No parameters.
bbands Read

Fetch Alpha Vantage technical indicator data for BBANDS.

Lua path
app.integrations.alpha_vantage.bbands
Full name
alpha-vantage.alpha_vantage_bbands
ParameterTypeRequiredDescription
No parameters.
bop Read

Fetch Alpha Vantage technical indicator data for BOP.

Lua path
app.integrations.alpha_vantage.bop
Full name
alpha-vantage.alpha_vantage_bop
ParameterTypeRequiredDescription
No parameters.
brent Read

Fetch Alpha Vantage commodity data for BRENT.

Lua path
app.integrations.alpha_vantage.brent
Full name
alpha-vantage.alpha_vantage_brent
ParameterTypeRequiredDescription
No parameters.
cash_flow Read

Fetch Alpha Vantage company fundamental data for CASH_FLOW.

Lua path
app.integrations.alpha_vantage.cash_flow
Full name
alpha-vantage.alpha_vantage_cash_flow
ParameterTypeRequiredDescription
No parameters.
cci Read

Fetch Alpha Vantage technical indicator data for CCI.

Lua path
app.integrations.alpha_vantage.cci
Full name
alpha-vantage.alpha_vantage_cci
ParameterTypeRequiredDescription
No parameters.
cmo Read

Fetch Alpha Vantage technical indicator data for CMO.

Lua path
app.integrations.alpha_vantage.cmo
Full name
alpha-vantage.alpha_vantage_cmo
ParameterTypeRequiredDescription
No parameters.
coffee Read

Fetch Alpha Vantage commodity data for COFFEE.

Lua path
app.integrations.alpha_vantage.coffee
Full name
alpha-vantage.alpha_vantage_coffee
ParameterTypeRequiredDescription
No parameters.
copper Read

Fetch Alpha Vantage commodity data for COPPER.

Lua path
app.integrations.alpha_vantage.copper
Full name
alpha-vantage.alpha_vantage_copper
ParameterTypeRequiredDescription
No parameters.
corn Read

Fetch Alpha Vantage commodity data for CORN.

Lua path
app.integrations.alpha_vantage.corn
Full name
alpha-vantage.alpha_vantage_corn
ParameterTypeRequiredDescription
No parameters.
cotton Read

Fetch Alpha Vantage commodity data for COTTON.

Lua path
app.integrations.alpha_vantage.cotton
Full name
alpha-vantage.alpha_vantage_cotton
ParameterTypeRequiredDescription
No parameters.
cpi Read

Fetch Alpha Vantage economic indicator data for CPI.

Lua path
app.integrations.alpha_vantage.cpi
Full name
alpha-vantage.alpha_vantage_cpi
ParameterTypeRequiredDescription
No parameters.
crypto_intraday Read

Fetch Alpha Vantage crypto currency data for CRYPTO_INTRADAY.

Lua path
app.integrations.alpha_vantage.crypto_intraday
Full name
alpha-vantage.alpha_vantage_crypto_intraday
ParameterTypeRequiredDescription
No parameters.
currency_exchange_rate Read

Fetch Alpha Vantage foreign exchange data for CURRENCY_EXCHANGE_RATE.

Lua path
app.integrations.alpha_vantage.currency_exchange_rate
Full name
alpha-vantage.alpha_vantage_currency_exchange_rate
ParameterTypeRequiredDescription
No parameters.
dema Read

Fetch Alpha Vantage technical indicator data for DEMA.

Lua path
app.integrations.alpha_vantage.dema
Full name
alpha-vantage.alpha_vantage_dema
ParameterTypeRequiredDescription
No parameters.
digital_currency_daily Read

Fetch Alpha Vantage crypto currency data for DIGITAL_CURRENCY_DAILY.

Lua path
app.integrations.alpha_vantage.digital_currency_daily
Full name
alpha-vantage.alpha_vantage_digital_currency_daily
ParameterTypeRequiredDescription
No parameters.
digital_currency_monthly Read

Fetch Alpha Vantage crypto currency data for DIGITAL_CURRENCY_MONTHLY.

Lua path
app.integrations.alpha_vantage.digital_currency_monthly
Full name
alpha-vantage.alpha_vantage_digital_currency_monthly
ParameterTypeRequiredDescription
No parameters.
digital_currency_weekly Read

Fetch Alpha Vantage crypto currency data for DIGITAL_CURRENCY_WEEKLY.

Lua path
app.integrations.alpha_vantage.digital_currency_weekly
Full name
alpha-vantage.alpha_vantage_digital_currency_weekly
ParameterTypeRequiredDescription
No parameters.
dividends Read

Fetch Alpha Vantage company fundamental data for DIVIDENDS.

Lua path
app.integrations.alpha_vantage.dividends
Full name
alpha-vantage.alpha_vantage_dividends
ParameterTypeRequiredDescription
No parameters.
durables Read

Fetch Alpha Vantage economic indicator data for DURABLES.

Lua path
app.integrations.alpha_vantage.durables
Full name
alpha-vantage.alpha_vantage_durables
ParameterTypeRequiredDescription
No parameters.
dx Read

Fetch Alpha Vantage technical indicator data for DX.

Lua path
app.integrations.alpha_vantage.dx
Full name
alpha-vantage.alpha_vantage_dx
ParameterTypeRequiredDescription
No parameters.
earnings Read

Fetch Alpha Vantage company fundamental data for EARNINGS.

Lua path
app.integrations.alpha_vantage.earnings
Full name
alpha-vantage.alpha_vantage_earnings
ParameterTypeRequiredDescription
No parameters.
earnings_calendar Read

Fetch Alpha Vantage calendar/listing data for EARNINGS_CALENDAR.

Lua path
app.integrations.alpha_vantage.earnings_calendar
Full name
alpha-vantage.alpha_vantage_earnings_calendar
ParameterTypeRequiredDescription
No parameters.
earnings_call_transcript Read

Fetch Alpha Vantage intelligence data for EARNINGS_CALL_TRANSCRIPT.

Lua path
app.integrations.alpha_vantage.earnings_call_transcript
Full name
alpha-vantage.alpha_vantage_earnings_call_transcript
ParameterTypeRequiredDescription
No parameters.
earnings_estimates Read

Fetch Alpha Vantage company fundamental data for EARNINGS_ESTIMATES.

Lua path
app.integrations.alpha_vantage.earnings_estimates
Full name
alpha-vantage.alpha_vantage_earnings_estimates
ParameterTypeRequiredDescription
No parameters.
ema Read

Fetch Alpha Vantage technical indicator data for EMA.

Lua path
app.integrations.alpha_vantage.ema
Full name
alpha-vantage.alpha_vantage_ema
ParameterTypeRequiredDescription
No parameters.
etf_profile Read

Fetch Alpha Vantage company fundamental data for ETF_PROFILE.

Lua path
app.integrations.alpha_vantage.etf_profile
Full name
alpha-vantage.alpha_vantage_etf_profile
ParameterTypeRequiredDescription
No parameters.
federal_funds_rate Read

Fetch Alpha Vantage economic indicator data for FEDERAL_FUNDS_RATE.

Lua path
app.integrations.alpha_vantage.federal_funds_rate
Full name
alpha-vantage.alpha_vantage_federal_funds_rate
ParameterTypeRequiredDescription
No parameters.
fx_daily Read

Fetch Alpha Vantage foreign exchange data for FX_DAILY.

Lua path
app.integrations.alpha_vantage.fx_daily
Full name
alpha-vantage.alpha_vantage_fx_daily
ParameterTypeRequiredDescription
No parameters.
fx_intraday Read

Fetch Alpha Vantage foreign exchange data for FX_INTRADAY.

Lua path
app.integrations.alpha_vantage.fx_intraday
Full name
alpha-vantage.alpha_vantage_fx_intraday
ParameterTypeRequiredDescription
No parameters.
fx_monthly Read

Fetch Alpha Vantage foreign exchange data for FX_MONTHLY.

Lua path
app.integrations.alpha_vantage.fx_monthly
Full name
alpha-vantage.alpha_vantage_fx_monthly
ParameterTypeRequiredDescription
No parameters.
fx_weekly Read

Fetch Alpha Vantage foreign exchange data for FX_WEEKLY.

Lua path
app.integrations.alpha_vantage.fx_weekly
Full name
alpha-vantage.alpha_vantage_fx_weekly
ParameterTypeRequiredDescription
No parameters.
global_quote Read

Fetch Alpha Vantage equity market data for GLOBAL_QUOTE.

Lua path
app.integrations.alpha_vantage.global_quote
Full name
alpha-vantage.alpha_vantage_global_quote
ParameterTypeRequiredDescription
No parameters.
gold_silver_history Read

Fetch Alpha Vantage commodity data for GOLD_SILVER_HISTORY.

Lua path
app.integrations.alpha_vantage.gold_silver_history
Full name
alpha-vantage.alpha_vantage_gold_silver_history
ParameterTypeRequiredDescription
No parameters.
gold_silver_spot Read

Fetch Alpha Vantage commodity data for GOLD_SILVER_SPOT.

Lua path
app.integrations.alpha_vantage.gold_silver_spot
Full name
alpha-vantage.alpha_vantage_gold_silver_spot
ParameterTypeRequiredDescription
No parameters.
historical_options Read

Fetch Alpha Vantage US options data for HISTORICAL_OPTIONS.

Lua path
app.integrations.alpha_vantage.historical_options
Full name
alpha-vantage.alpha_vantage_historical_options
ParameterTypeRequiredDescription
No parameters.
historical_put_call_ratio Read

Fetch Alpha Vantage US options data for HISTORICAL_PUT_CALL_RATIO.

Lua path
app.integrations.alpha_vantage.historical_put_call_ratio
Full name
alpha-vantage.alpha_vantage_historical_put_call_ratio
ParameterTypeRequiredDescription
No parameters.
historical_volume_open_interest_ratio Read

Fetch Alpha Vantage US options data for HISTORICAL_VOLUME_OPEN_INTEREST_RATIO.

Lua path
app.integrations.alpha_vantage.historical_volume_open_interest_ratio
Full name
alpha-vantage.alpha_vantage_historical_volume_open_interest_ratio
ParameterTypeRequiredDescription
No parameters.
ht_dcperiod Read

Fetch Alpha Vantage technical indicator data for HT_DCPERIOD.

Lua path
app.integrations.alpha_vantage.ht_dcperiod
Full name
alpha-vantage.alpha_vantage_ht_dcperiod
ParameterTypeRequiredDescription
No parameters.
ht_dcphase Read

Fetch Alpha Vantage technical indicator data for HT_DCPHASE.

Lua path
app.integrations.alpha_vantage.ht_dcphase
Full name
alpha-vantage.alpha_vantage_ht_dcphase
ParameterTypeRequiredDescription
No parameters.
ht_phasor Read

Fetch Alpha Vantage technical indicator data for HT_PHASOR.

Lua path
app.integrations.alpha_vantage.ht_phasor
Full name
alpha-vantage.alpha_vantage_ht_phasor
ParameterTypeRequiredDescription
No parameters.
ht_sine Read

Fetch Alpha Vantage technical indicator data for HT_SINE.

Lua path
app.integrations.alpha_vantage.ht_sine
Full name
alpha-vantage.alpha_vantage_ht_sine
ParameterTypeRequiredDescription
No parameters.
ht_trendline Read

Fetch Alpha Vantage technical indicator data for HT_TRENDLINE.

Lua path
app.integrations.alpha_vantage.ht_trendline
Full name
alpha-vantage.alpha_vantage_ht_trendline
ParameterTypeRequiredDescription
No parameters.
ht_trendmode Read

Fetch Alpha Vantage technical indicator data for HT_TRENDMODE.

Lua path
app.integrations.alpha_vantage.ht_trendmode
Full name
alpha-vantage.alpha_vantage_ht_trendmode
ParameterTypeRequiredDescription
No parameters.
income_statement Read

Fetch Alpha Vantage company fundamental data for INCOME_STATEMENT.

Lua path
app.integrations.alpha_vantage.income_statement
Full name
alpha-vantage.alpha_vantage_income_statement
ParameterTypeRequiredDescription
No parameters.
index_catalog Read

Fetch Alpha Vantage index data for INDEX_CATALOG.

Lua path
app.integrations.alpha_vantage.index_catalog
Full name
alpha-vantage.alpha_vantage_index_catalog
ParameterTypeRequiredDescription
No parameters.
index_data Read

Fetch Alpha Vantage index data for INDEX_DATA.

Lua path
app.integrations.alpha_vantage.index_data
Full name
alpha-vantage.alpha_vantage_index_data
ParameterTypeRequiredDescription
No parameters.
inflation Read

Fetch Alpha Vantage economic indicator data for INFLATION.

Lua path
app.integrations.alpha_vantage.inflation
Full name
alpha-vantage.alpha_vantage_inflation
ParameterTypeRequiredDescription
No parameters.
insider_transactions Read

Fetch Alpha Vantage company fundamental data for INSIDER_TRANSACTIONS.

Lua path
app.integrations.alpha_vantage.insider_transactions
Full name
alpha-vantage.alpha_vantage_insider_transactions
ParameterTypeRequiredDescription
No parameters.
institutional_holdings Read

Fetch Alpha Vantage company fundamental data for INSTITUTIONAL_HOLDINGS.

Lua path
app.integrations.alpha_vantage.institutional_holdings
Full name
alpha-vantage.alpha_vantage_institutional_holdings
ParameterTypeRequiredDescription
No parameters.
ipo_calendar Read

Fetch Alpha Vantage calendar/listing data for IPO_CALENDAR.

Lua path
app.integrations.alpha_vantage.ipo_calendar
Full name
alpha-vantage.alpha_vantage_ipo_calendar
ParameterTypeRequiredDescription
No parameters.
kama Read

Fetch Alpha Vantage technical indicator data for KAMA.

Lua path
app.integrations.alpha_vantage.kama
Full name
alpha-vantage.alpha_vantage_kama
ParameterTypeRequiredDescription
No parameters.
listing_status Read

Fetch Alpha Vantage calendar/listing data for LISTING_STATUS.

Lua path
app.integrations.alpha_vantage.listing_status
Full name
alpha-vantage.alpha_vantage_listing_status
ParameterTypeRequiredDescription
No parameters.
macd Read

Fetch Alpha Vantage technical indicator data for MACD.

Lua path
app.integrations.alpha_vantage.macd
Full name
alpha-vantage.alpha_vantage_macd
ParameterTypeRequiredDescription
No parameters.
macdext Read

Fetch Alpha Vantage technical indicator data for MACDEXT.

Lua path
app.integrations.alpha_vantage.macdext
Full name
alpha-vantage.alpha_vantage_macdext
ParameterTypeRequiredDescription
No parameters.
mama Read

Fetch Alpha Vantage technical indicator data for MAMA.

Lua path
app.integrations.alpha_vantage.mama
Full name
alpha-vantage.alpha_vantage_mama
ParameterTypeRequiredDescription
No parameters.
market_status Read

Fetch Alpha Vantage global market open and closure status.

Lua path
app.integrations.alpha_vantage.market_status
Full name
alpha-vantage.alpha_vantage_market_status
ParameterTypeRequiredDescription
No parameters.
mfi Read

Fetch Alpha Vantage technical indicator data for MFI.

Lua path
app.integrations.alpha_vantage.mfi
Full name
alpha-vantage.alpha_vantage_mfi
ParameterTypeRequiredDescription
No parameters.
midpoint Read

Fetch Alpha Vantage technical indicator data for MIDPOINT.

Lua path
app.integrations.alpha_vantage.midpoint
Full name
alpha-vantage.alpha_vantage_midpoint
ParameterTypeRequiredDescription
No parameters.
midprice Read

Fetch Alpha Vantage technical indicator data for MIDPRICE.

Lua path
app.integrations.alpha_vantage.midprice
Full name
alpha-vantage.alpha_vantage_midprice
ParameterTypeRequiredDescription
No parameters.
minus_di Read

Fetch Alpha Vantage technical indicator data for MINUS_DI.

Lua path
app.integrations.alpha_vantage.minus_di
Full name
alpha-vantage.alpha_vantage_minus_di
ParameterTypeRequiredDescription
No parameters.
minus_dm Read

Fetch Alpha Vantage technical indicator data for MINUS_DM.

Lua path
app.integrations.alpha_vantage.minus_dm
Full name
alpha-vantage.alpha_vantage_minus_dm
ParameterTypeRequiredDescription
No parameters.
mom Read

Fetch Alpha Vantage technical indicator data for MOM.

Lua path
app.integrations.alpha_vantage.mom
Full name
alpha-vantage.alpha_vantage_mom
ParameterTypeRequiredDescription
No parameters.
natr Read

Fetch Alpha Vantage technical indicator data for NATR.

Lua path
app.integrations.alpha_vantage.natr
Full name
alpha-vantage.alpha_vantage_natr
ParameterTypeRequiredDescription
No parameters.
natural_gas Read

Fetch Alpha Vantage commodity data for NATURAL_GAS.

Lua path
app.integrations.alpha_vantage.natural_gas
Full name
alpha-vantage.alpha_vantage_natural_gas
ParameterTypeRequiredDescription
No parameters.
news_sentiment Read

Fetch Alpha Vantage intelligence data for NEWS_SENTIMENT.

Lua path
app.integrations.alpha_vantage.news_sentiment
Full name
alpha-vantage.alpha_vantage_news_sentiment
ParameterTypeRequiredDescription
No parameters.
nonfarm_payroll Read

Fetch Alpha Vantage economic indicator data for NONFARM_PAYROLL.

Lua path
app.integrations.alpha_vantage.nonfarm_payroll
Full name
alpha-vantage.alpha_vantage_nonfarm_payroll
ParameterTypeRequiredDescription
No parameters.
obv Read

Fetch Alpha Vantage technical indicator data for OBV.

Lua path
app.integrations.alpha_vantage.obv
Full name
alpha-vantage.alpha_vantage_obv
ParameterTypeRequiredDescription
No parameters.
overview Read

Fetch Alpha Vantage company fundamental data for OVERVIEW.

Lua path
app.integrations.alpha_vantage.overview
Full name
alpha-vantage.alpha_vantage_overview
ParameterTypeRequiredDescription
No parameters.
plus_di Read

Fetch Alpha Vantage technical indicator data for PLUS_DI.

Lua path
app.integrations.alpha_vantage.plus_di
Full name
alpha-vantage.alpha_vantage_plus_di
ParameterTypeRequiredDescription
No parameters.
plus_dm Read

Fetch Alpha Vantage technical indicator data for PLUS_DM.

Lua path
app.integrations.alpha_vantage.plus_dm
Full name
alpha-vantage.alpha_vantage_plus_dm
ParameterTypeRequiredDescription
No parameters.
ppo Read

Fetch Alpha Vantage technical indicator data for PPO.

Lua path
app.integrations.alpha_vantage.ppo
Full name
alpha-vantage.alpha_vantage_ppo
ParameterTypeRequiredDescription
No parameters.
realtime_bulk_quotes Read

Fetch Alpha Vantage equity market data for REALTIME_BULK_QUOTES.

Lua path
app.integrations.alpha_vantage.realtime_bulk_quotes
Full name
alpha-vantage.alpha_vantage_realtime_bulk_quotes
ParameterTypeRequiredDescription
No parameters.
realtime_options Read

Fetch Alpha Vantage US options data for REALTIME_OPTIONS.

Lua path
app.integrations.alpha_vantage.realtime_options
Full name
alpha-vantage.alpha_vantage_realtime_options
ParameterTypeRequiredDescription
No parameters.
realtime_put_call_ratio Read

Fetch Alpha Vantage US options data for REALTIME_PUT_CALL_RATIO.

Lua path
app.integrations.alpha_vantage.realtime_put_call_ratio
Full name
alpha-vantage.alpha_vantage_realtime_put_call_ratio
ParameterTypeRequiredDescription
No parameters.
realtime_volume_open_interest_ratio Read

Fetch Alpha Vantage US options data for REALTIME_VOLUME_OPEN_INTEREST_RATIO.

Lua path
app.integrations.alpha_vantage.realtime_volume_open_interest_ratio
Full name
alpha-vantage.alpha_vantage_realtime_volume_open_interest_ratio
ParameterTypeRequiredDescription
No parameters.
real_gdp Read

Fetch Alpha Vantage economic indicator data for REAL_GDP.

Lua path
app.integrations.alpha_vantage.real_gdp
Full name
alpha-vantage.alpha_vantage_real_gdp
ParameterTypeRequiredDescription
No parameters.
real_gdp_per_capita Read

Fetch Alpha Vantage economic indicator data for REAL_GDP_PER_CAPITA.

Lua path
app.integrations.alpha_vantage.real_gdp_per_capita
Full name
alpha-vantage.alpha_vantage_real_gdp_per_capita
ParameterTypeRequiredDescription
No parameters.
retail_sales Read

Fetch Alpha Vantage economic indicator data for RETAIL_SALES.

Lua path
app.integrations.alpha_vantage.retail_sales
Full name
alpha-vantage.alpha_vantage_retail_sales
ParameterTypeRequiredDescription
No parameters.
roc Read

Fetch Alpha Vantage technical indicator data for ROC.

Lua path
app.integrations.alpha_vantage.roc
Full name
alpha-vantage.alpha_vantage_roc
ParameterTypeRequiredDescription
No parameters.
rocr Read

Fetch Alpha Vantage technical indicator data for ROCR.

Lua path
app.integrations.alpha_vantage.rocr
Full name
alpha-vantage.alpha_vantage_rocr
ParameterTypeRequiredDescription
No parameters.
rsi Read

Fetch Alpha Vantage technical indicator data for RSI.

Lua path
app.integrations.alpha_vantage.rsi
Full name
alpha-vantage.alpha_vantage_rsi
ParameterTypeRequiredDescription
No parameters.
sar Read

Fetch Alpha Vantage technical indicator data for SAR.

Lua path
app.integrations.alpha_vantage.sar
Full name
alpha-vantage.alpha_vantage_sar
ParameterTypeRequiredDescription
No parameters.
shares_outstanding Read

Fetch Alpha Vantage company fundamental data for SHARES_OUTSTANDING.

Lua path
app.integrations.alpha_vantage.shares_outstanding
Full name
alpha-vantage.alpha_vantage_shares_outstanding
ParameterTypeRequiredDescription
No parameters.
sma Read

Fetch Alpha Vantage technical indicator data for SMA.

Lua path
app.integrations.alpha_vantage.sma
Full name
alpha-vantage.alpha_vantage_sma
ParameterTypeRequiredDescription
No parameters.
splits Read

Fetch Alpha Vantage company fundamental data for SPLITS.

Lua path
app.integrations.alpha_vantage.splits
Full name
alpha-vantage.alpha_vantage_splits
ParameterTypeRequiredDescription
No parameters.
stoch Read

Fetch Alpha Vantage technical indicator data for STOCH.

Lua path
app.integrations.alpha_vantage.stoch
Full name
alpha-vantage.alpha_vantage_stoch
ParameterTypeRequiredDescription
No parameters.
stochf Read

Fetch Alpha Vantage technical indicator data for STOCHF.

Lua path
app.integrations.alpha_vantage.stochf
Full name
alpha-vantage.alpha_vantage_stochf
ParameterTypeRequiredDescription
No parameters.
stochrsi Read

Fetch Alpha Vantage technical indicator data for STOCHRSI.

Lua path
app.integrations.alpha_vantage.stochrsi
Full name
alpha-vantage.alpha_vantage_stochrsi
ParameterTypeRequiredDescription
No parameters.
sugar Read

Fetch Alpha Vantage commodity data for SUGAR.

Lua path
app.integrations.alpha_vantage.sugar
Full name
alpha-vantage.alpha_vantage_sugar
ParameterTypeRequiredDescription
No parameters.
t3 Read

Fetch Alpha Vantage technical indicator data for T3.

Lua path
app.integrations.alpha_vantage.t3
Full name
alpha-vantage.alpha_vantage_t3
ParameterTypeRequiredDescription
No parameters.
tema Read

Fetch Alpha Vantage technical indicator data for TEMA.

Lua path
app.integrations.alpha_vantage.tema
Full name
alpha-vantage.alpha_vantage_tema
ParameterTypeRequiredDescription
No parameters.
time_series_daily Read

Fetch Alpha Vantage equity market data for TIME_SERIES_DAILY.

Lua path
app.integrations.alpha_vantage.time_series_daily
Full name
alpha-vantage.alpha_vantage_time_series_daily
ParameterTypeRequiredDescription
No parameters.
time_series_daily_adjusted Read

Fetch Alpha Vantage equity market data for TIME_SERIES_DAILY_ADJUSTED.

Lua path
app.integrations.alpha_vantage.time_series_daily_adjusted
Full name
alpha-vantage.alpha_vantage_time_series_daily_adjusted
ParameterTypeRequiredDescription
No parameters.
time_series_intraday Read

Fetch Alpha Vantage equity market data for TIME_SERIES_INTRADAY.

Lua path
app.integrations.alpha_vantage.time_series_intraday
Full name
alpha-vantage.alpha_vantage_time_series_intraday
ParameterTypeRequiredDescription
No parameters.
time_series_monthly Read

Fetch Alpha Vantage equity market data for TIME_SERIES_MONTHLY.

Lua path
app.integrations.alpha_vantage.time_series_monthly
Full name
alpha-vantage.alpha_vantage_time_series_monthly
ParameterTypeRequiredDescription
No parameters.
time_series_monthly_adjusted Read

Fetch Alpha Vantage equity market data for TIME_SERIES_MONTHLY_ADJUSTED.

Lua path
app.integrations.alpha_vantage.time_series_monthly_adjusted
Full name
alpha-vantage.alpha_vantage_time_series_monthly_adjusted
ParameterTypeRequiredDescription
No parameters.
time_series_weekly Read

Fetch Alpha Vantage equity market data for TIME_SERIES_WEEKLY.

Lua path
app.integrations.alpha_vantage.time_series_weekly
Full name
alpha-vantage.alpha_vantage_time_series_weekly
ParameterTypeRequiredDescription
No parameters.
time_series_weekly_adjusted Read

Fetch Alpha Vantage equity market data for TIME_SERIES_WEEKLY_ADJUSTED.

Lua path
app.integrations.alpha_vantage.time_series_weekly_adjusted
Full name
alpha-vantage.alpha_vantage_time_series_weekly_adjusted
ParameterTypeRequiredDescription
No parameters.
top_gainers_losers Read

Fetch Alpha Vantage intelligence data for TOP_GAINERS_LOSERS.

Lua path
app.integrations.alpha_vantage.top_gainers_losers
Full name
alpha-vantage.alpha_vantage_top_gainers_losers
ParameterTypeRequiredDescription
No parameters.
trange Read

Fetch Alpha Vantage technical indicator data for TRANGE.

Lua path
app.integrations.alpha_vantage.trange
Full name
alpha-vantage.alpha_vantage_trange
ParameterTypeRequiredDescription
No parameters.
treasury_yield Read

Fetch Alpha Vantage economic indicator data for TREASURY_YIELD.

Lua path
app.integrations.alpha_vantage.treasury_yield
Full name
alpha-vantage.alpha_vantage_treasury_yield
ParameterTypeRequiredDescription
No parameters.
trima Read

Fetch Alpha Vantage technical indicator data for TRIMA.

Lua path
app.integrations.alpha_vantage.trima
Full name
alpha-vantage.alpha_vantage_trima
ParameterTypeRequiredDescription
No parameters.
trix Read

Fetch Alpha Vantage technical indicator data for TRIX.

Lua path
app.integrations.alpha_vantage.trix
Full name
alpha-vantage.alpha_vantage_trix
ParameterTypeRequiredDescription
No parameters.
ultosc Read

Fetch Alpha Vantage technical indicator data for ULTOSC.

Lua path
app.integrations.alpha_vantage.ultosc
Full name
alpha-vantage.alpha_vantage_ultosc
ParameterTypeRequiredDescription
No parameters.
unemployment Read

Fetch Alpha Vantage economic indicator data for UNEMPLOYMENT.

Lua path
app.integrations.alpha_vantage.unemployment
Full name
alpha-vantage.alpha_vantage_unemployment
ParameterTypeRequiredDescription
No parameters.
vwap Read

Fetch Alpha Vantage technical indicator data for VWAP.

Lua path
app.integrations.alpha_vantage.vwap
Full name
alpha-vantage.alpha_vantage_vwap
ParameterTypeRequiredDescription
No parameters.
wheat Read

Fetch Alpha Vantage commodity data for WHEAT.

Lua path
app.integrations.alpha_vantage.wheat
Full name
alpha-vantage.alpha_vantage_wheat
ParameterTypeRequiredDescription
No parameters.
willr Read

Fetch Alpha Vantage technical indicator data for WILLR.

Lua path
app.integrations.alpha_vantage.willr
Full name
alpha-vantage.alpha_vantage_willr
ParameterTypeRequiredDescription
No parameters.
wma Read

Fetch Alpha Vantage technical indicator data for WMA.

Lua path
app.integrations.alpha_vantage.wma
Full name
alpha-vantage.alpha_vantage_wma
ParameterTypeRequiredDescription
No parameters.
wti Read

Fetch Alpha Vantage commodity data for WTI.

Lua path
app.integrations.alpha_vantage.wti
Full name
alpha-vantage.alpha_vantage_wti
ParameterTypeRequiredDescription
No parameters.