The Finance category exposes ~347 tools covering traditional financial markets — a comprehensive library of technical analysis indicators, commodity pricing feeds, and market data series. If your agent needs to compute chart patterns, evaluate momentum signals, or pull a commodity spot price, this is the category to reach for. Every tool follows the same discover → describe → execute flow, so your agent can find and call the right indicator without any pre-baked knowledge of the underlying data providers.
What’s inside
- Technical indicators — a broad set of momentum, trend, volume, and volatility studies, including:
- ADX (
getAdx) and ADXR (getAdxr) — Average Directional Movement Index and its smoothed variant, used to measure trend strength.
- Chaikin A/D Line (
getAd) and Chaikin A/D Oscillator (getAdosc) — volume-weighted accumulation/distribution tools.
- Many more covering oscillators, moving averages, Bollinger Bands, RSI, MACD, Stochastics, and beyond.
- Commodities — spot and historical pricing for metals, energy, and agricultural products (e.g.,
getAluminum, and similar endpoints for other commodities).
- Market data — quotes, OHLCV series, and related pricing data for traditional assets including equities and indices.
With hundreds of indicator endpoints, browsing the full list is impractical. Use find_tools("<indicator name> for <symbol>") to jump straight to the correct operation — for example, find_tools("RSI for TSLA daily") or find_tools("MACD on BTC 1-hour"). This is faster and more reliable than guessing the exact Provider/Operation name.
Example
The three-step flow for pulling the ADX indicator on AAPL:
find_tools("ADX indicator for AAPL daily")
describe_tool("TwelveData/getAdx")
execute_tool("TwelveData/getAdx", { symbol: "AAPL", interval: "1day" })