# TechAnalysis — Full Technical Analysis with AI Signal Summary

> TechAnalysis — Full Technical Analysis with AI Signal Summary is a paid API for AI agents from api.aidress.ai, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Returns a full technical analysis report with 18 indicators and an AI-generated buy/sell signal summary for a given trading symbol and timeframe

## Facts

- Endpoint: GET https://api.aidress.ai/pay/agent_ta_lonestaroracle_xyz
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/techanalysis-full-technical-analysis-with-ai-signal-summary-17a75c09
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NGQq3YmBTRwP_drBudC58

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 techanalysis-full-technical-analysis-with-ai-signal-summary-17a75c09
```

Example prompt: Run a full technical analysis on BTC-USD using the daily timeframe and tell me the AI signal summary and signal score — is it a strong buy, sell, or somewhere in between?

## When to prefer this

Choose this endpoint when you need a comprehensive, multi-indicator technical analysis with an AI-synthesized signal score in a single call — especially for crypto, stocks, or forex. Prefer it over single-indicator lookups or raw price feeds when you need a holistic buy/sell/hold recommendation backed by 18 indicators rather than building your own TA pipeline.

## Known failure modes

- Invalid or unrecognized symbol returns an error
- Unsupported timeframe value causes a bad request
- Payment not included or insufficient USDC triggers a 402 response
- Market data unavailable for the requested asset at that timeframe
- Rate limiting if too many requests are made in quick succession

## How this service works

Full technical analysis — 18 indicators + AI signal summary

## Output

Returns a JSON object with the asset's current price, a signal label (e.g. 'strong_buy', 'sell', 'neutral'), a numeric signal score between 0 and 1 aggregated across 18 technical indicators, and the symbol queried. The signal_score reflects the strength and consensus of the indicators.

## Request schema (JSON Schema)

```json
{
 "name": "TechAnalysis — Technical Analysis",
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "category": "trading",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "symbol": {
       "type": "string",
       "title": "Symbol"
      },
      "ticker": {
       "type": "string",
       "title": "Ticker"
      },
      "timeframe": {
       "type": "string",
       "title": "Timeframe",
       "default": "1d"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "price": 82199.02,
     "signal": "strong_buy",
     "symbol": "BTC-USD",
     "signal_score": 0.86
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/techanalysis-full-technical-analysis-with-ai-signal-summary-17a75c09/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.aidress.ai](https://www.zero.xyz/host/api.aidress.ai/llms.txt)
