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.
kosmo integrations:lua --eval 'dump(app.integrations.alpha_vantage.ad({}))' --json 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.
local alpha_vantage = app.integrations.alpha_vantage
local result = alpha_vantage.ad({})
dump(result) kosmo integrations:lua workflow.lua --json
kosmo integrations:lua workflow.lua --force --json 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.
# 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, andalpha_vantage_realtime_bulk_quotes. - Discovery and market status:
alpha_vantage_symbol_search,alpha_vantage_listing_status, andalpha_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"
})
``` local result = app.integrations.alpha_vantage.ad({})
print(result) Functions
ad Read
Fetch Alpha Vantage technical indicator data for AD.
- Lua path
app.integrations.alpha_vantage.ad- Full name
alpha-vantage.alpha_vantage_ad
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
adosc Read
Fetch Alpha Vantage technical indicator data for ADOSC.
- Lua path
app.integrations.alpha_vantage.adosc- Full name
alpha-vantage.alpha_vantage_adosc
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
symbol_search Read
Search Alpha Vantage symbols by keywords.
- Lua path
app.integrations.alpha_vantage.symbol_search- Full name
alpha-vantage.alpha_vantage_symbol_search
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||