# Mode x402 Technical Analysis Indicators

> Mode x402 Technical Analysis Indicators is a paid API for AI agents from x402.mode.network, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Computes technical analysis signals and indicators for trading assets, enabling intelligent trading agents to make data-driven decisions

## Facts

- Endpoint: POST https://x402.mode.network/ta/indicators
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-mode-network-5d22960c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iJX8LOuyJoyGg7RurQsIn

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 x402-mode-network-5d22960c -d '<json body>'
```

Example prompt: Run technical analysis indicators on BTC/USD — I need RSI, MACD, and Bollinger Bands on the 1-hour timeframe so my trading agent can decide whether to enter a long position.

## When to prefer this

Choose this endpoint when building or running an AI trading agent that needs programmatic access to a broad library of technical analysis indicators on-demand, especially when you want to pay per-call via micropayment (x402/USDC) rather than maintain a subscription. Ideal for agentic trading workflows that require signals at decision time.

## Known failure modes

- Invalid or unsupported asset symbol returns an error
- Unsupported timeframe or indicator parameter causes a validation error
- Insufficient price history for requested indicator period
- Payment failure (402) if USDC micropayment is not properly submitted
- Rate limiting or timeout if the indicator computation is resource-intensive

## How this service works

Mode-x402 is a complete library of signals and indicators for intelligent trading agents

## Output

Returns computed technical analysis indicators and signals such as RSI, MACD, moving averages, Bollinger Bands, and other oscillators for the specified asset and timeframe, enabling trading agents to interpret market conditions and generate trade signals.

## Response schema (JSON Schema)

```json
{
 "data": {
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
   "data": {
    "type": "array",
    "items": {
     "type": "object",
     "properties": {
      "id": {
       "type": "string",
       "description": "Unique identifier for the indicator instance"
      },
      "meta": {
       "type": "object",
       "properties": {
        "category": {
         "type": "string",
         "description": "Category of the indicator"
        },
        "timezone": {
         "type": "string",
         "description": "Timezone of the data"
        },
        "description": {
         "type": "string",
         "description": "Description of the indicator"
        },
        "display_name": {
         "type": "string",
         "description": "Display name of the indicator"
        }
       }
      },
      "symbol": {
       "type": "string",
       "description": "Trading pair symbol"
      },
      "values": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "value": {
          "type": [
           "number",
           "null"
          ],
          "description": "Value of the indicator at the timestamp"
         },
         "timestamp": {
          "type": "string",
          "description": "ISO format date time of the data point"
         }
        }
       }
      },
      "indicator": {
       "type": "string",
       "description": "Type of indicator"
      },
      "time_frame": {
       "type": "string",
       "description": "Time frame for the indicator"
      }
     }
    }
   },
   "status": {
    "type": "string",
    "description": "Status of the request"
   }
  },
  "additionalProperties": false
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-mode-network-5d22960c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.mode.network](https://www.zero.xyz/host/x402.mode.network/llms.txt)
