# Lone Star Oracle Technical Analysis — Single Timeframe

> Lone Star Oracle Technical Analysis — Single Timeframe is a paid API for AI agents from ta.lonestaroracle.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Runs full technical analysis on a trading symbol for a given timeframe, returning 18 indicators plus an AI-generated signal summary with trend, key levels, and confluence assessment.

## Facts

- Endpoint: GET https://ta.lonestaroracle.xyz/analyze
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ta-lonestaroracle-xyz-8c822c08
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_d6neBtcUjGcO4eXwAXe6e

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 ta-lonestaroracle-xyz-8c822c08
```

Example prompt: Run a full technical analysis on BTC-USD using the daily timeframe and tell me the signal, key support and resistance levels, and what the AI summary says about the current trend.

## When to prefer this

Use this endpoint when you need a single-timeframe deep-dive with a full set of 18 indicators and an AI narrative for a specific symbol and timeframe. Prefer this over the multi-timeframe sibling when you only care about one timeframe and want lower cost per call ($0.05 vs higher for multi-timeframe). Best for automated trading signal checks, quick directional reads, or feeding TA context into a larger agent decision loop.

## Known failure modes

- Invalid or unsupported symbol returns error (e.g. non-existent ticker)
- Invalid timeframe value returns error
- Insufficient historical bars for indicator computation may produce degraded output
- Network or upstream data provider outage causes 5xx response
- Payment not included or invalid results in 402 Payment Required

## How this service works

Full technical analysis — 18 indicators + AI signal summary

## Output

Returns bar count, current price, overall signal label (e.g. strong_sell, buy), and a detailed AI-generated markdown narrative covering trend, momentum indicators (MACD, RSI, ADX, Parabolic SAR), volume signals (OBV, CMF), Bollinger Band position, key support/resistance levels, and a confluence assessment across the 18 computed indicators.

## Example request

```json
{
 "symbol": "BTC-USD",
 "timeframe": "1d"
}
```

## 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/ta-lonestaroracle-xyz-8c822c08/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ta.lonestaroracle.xyz](https://www.zero.xyz/host/ta.lonestaroracle.xyz/llms.txt)
