Skip to main content
Glama

Technical Analysis

ta_technicals
Read-only

Multi-timeframe technical-analysis snapshot for one coin, computed locally from real candles (not a vendor black box): per interval — last close, RSI(14), EMA20/50/200 + SMA200, MACD(12,26,9) with signal/histogram/cross freshness, ATR(14) with 2xATR stop suggestions (feed risk_position_size), Bollinger(20,2) with %B and bandwidth, ADX(14) with +DI/-DI, volume vs 20-candle average, and a transparent trend rule (EMA alignment qualified by ADX). 'intervals' picks the timeframes (default 1h,4h,1d; max 4 of 1m|5m|15m|30m|1h|4h|12h|1d|1w); 'market' routes candles (spot|perp|auto, default auto: spot preferred, perp fallback). AltFINS vendor support/resistance levels are appended when that feed is up.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
marketNoWhich candle series: 'spot', 'perp', or 'auto' (default: spot preferred, perp fallback)
symbolYesCoin symbol, e.g. 'ETH' or 'BTC'
intervalsNoCandle intervals to analyze, e.g. ["4h","1d"]. Default ["1h","4h","1d"]; max 4 of 1m|5m|15m|30m|1h|4h|12h|1d|1w

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
symbolYes
altFinsNoVendor levels enrichment; omitted when the AltFINS feed is down
timeframesYes
lastPriceUsdYesNewest close of the finest analyzed timeframe
failedIntervalsNoIntervals that could not be analyzed, with reasons

TDQS

A4.6/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations declare readOnlyHint=true, and the description aligns with that. It adds valuable behavioral context: the computation is local from real candles, not a vendor black box; the market routing fallback (spot preferred, perp fallback) is disclosed; and the AltFINS level append is conditional on feed availability. These details reveal dependencies and failure modes beyond the annotation's simple read-only flag.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is intentionally dense but never redundant. It front-loads the main purpose and indicator list, then explains parameter behavior, then concludes with the conditional AltFINS feed. Each sentence earns its place, though the first sentence is long and could overwhelm an agent scanning quickly. Still, the structure is logical and efficient for the complexity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given that an output schema exists, the description doesn't need to detail return structures. It covers parameter semantics, defaults, external data dependency, and a downstream consumer. It is sufficiently complete for an agent to invoke the tool correctly and understand what data will be returned and how the computation differs from alternatives.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3. The description adds meaning by clarifying that 'intervals' picks timeframes with a default and max of 4, and that 'market' routes candle choice with specific options and a default behavior. It also provides a concrete symbol example ('ETH'). This goes beyond simply restating the schema, though it doesn't elaborate on every fixed indicator parameter.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific, informative purpose: 'Multi-timeframe technical-analysis snapshot for one coin.' It enumerates the exact indicators and analytics (RSI, EMA, MACD, ATR, Bollinger, ADX, volume, trend rule), making it unmistakable what the tool returns. It also differentiates itself by noting it is 'computed locally from real candles (not a vendor black box),' which distinguishes it from any opaque analytics sibling.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context on what the tool does and how to configure it with defaults and allowed values for 'intervals' and 'market'. It references 'feed risk_position_size' as a downstream consumer of ATR stop suggestions, hinting at how outputs can be chained. However, it does not explicitly state when to prefer this tool over siblings like market_candles or market_quotes, or when not to use it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4/5.0
Disambiguation4/5

Tools are grouped by clear prefixes and mostly target distinct resources; market_quotes vs research_token_view, market_top_movers vs market_trending, and funding_current vs market_quotes have some field or purpose overlap, but descriptions draw enough scope boundaries for an agent to choose correctly in most cases. No two tools are truly interchangeable.

Naming Consistency5/5

All 30 tool names use lowercase snake_case with a consistent domain-prefix convention such as market_, flow_, research_, sentiment_, and catalysts_, making the surface predictable. Even helpers like utc_time and risk_position_size fit the same noun-oriented pattern without style mixing.

Tool Count2/5

At 30 tools this set crosses the 'too many' threshold, and several tools reproduce data already available through broader ones such as research_token_view and market_quotes. The breadth is defensible for a crypto-research platform, but the surface feels heavy and could be consolidated.

Completeness5/5

The tool set covers the read-only crypto research workflow thoroughly: market data, candles, derivatives, funding, OI, order book, whale flows, ETF flows, on-chain metrics, news, sentiment, prediction odds, technicals, regime/positioning scans, and position sizing. It also includes health and UTC helpers that close practical workflow gaps, with no obvious dead ends.

Resources