# TradeSnack Multi-Indicator Technical Analysis

> TradeSnack Multi-Indicator Technical Analysis is a paid API for AI agents from x402.tradesnack.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns comprehensive technical analysis for a crypto trading pair, including SMA/EMA crossovers, Bollinger Bands, RSI, candlestick patterns, support/resistance levels, trendlines, and experimental Elliott Wave analysis.

## Facts

- Endpoint: GET https://x402.tradesnack.com/ta
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tradesnack-multi-indicator-technical-analysis-bc643527
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QoRKD-xzDC6GcAHDZOrE7

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability tradesnack-multi-indicator-technical-analysis-bc643527
```

Example prompt: Can you run a full technical analysis on BTC-USDT using the 4h timeframe — I want to see RSI, Bollinger Bands, SMA/EMA crosses, candlestick patterns, support/resistance, and Elliott Wave if available?

## When to prefer this

Use this endpoint when you need a comprehensive, multi-indicator technical analysis snapshot for a crypto pair in a single call. It is especially suited for agents that need to synthesize trend, momentum, pattern, and wave signals together rather than querying individual indicators. Prefer this over general market data endpoints when you need RSI, Bollinger Bands, candlestick pattern detection, support/resistance, and Elliott Wave all at once for 1h, 4h, or 1d timeframes.

## Known failure modes

- Missing or invalid 'symbol' parameter returns an error — symbol must be a valid pair like BTC-USDT
- Invalid timeframe value returns an error — only '1h', '4h', '1d' are accepted
- Unsupported trading pair (pair not tracked by the data source) returns an error or empty result
- Network or upstream data feed issues may return a 5xx error
- Payment failure (insufficient funds or x402 protocol error) prevents the call from completing

## How this service works

Multi-indicator technical analysis (SMA/EMA crosses, Bollinger, RSI, candlestick patterns, support/resistance, trendlines, experimental Elliott Wave) for any crypto pair.

## Output

Returns a JSON object containing the current price, a summary of signals, computed indicator values (SMA, EMA, Bollinger Bands, RSI), detected candlestick patterns (as an array), support/resistance levels (as an array), trendlines (as an array), and experimental Elliott Wave analysis — all for the requested trading pair and timeframe.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "symbol"
     ],
     "properties": {
      "tf": {
       "enum": [
        "1h",
        "4h",
        "1d"
       ],
       "type": "string",
       "description": "Timeframe (default 1h)"
      },
      "symbol": {
       "type": "string",
       "description": "Trading pair, e.g. BTC-USDT, ETH-USDT, SOL-USDT"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "price": {
       "type": "number"
      },
      "symbol": {
       "type": "string"
      },
      "summary": {
       "type": "object"
      },
      "indicators": {
       "type": "object"
      },
      "trendlines": {
       "type": "array"
      },
      "elliottWave": {
       "type": "object"
      },
      "candlePatterns": {
       "type": "array"
      },
      "supportResistance": {
       "type": "array"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tradesnack-multi-indicator-technical-analysis-bc643527/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.tradesnack.com](https://www.zero.xyz/host/x402.tradesnack.com/llms.txt)
