# Lone Star Oracle Multi-Timeframe Technical Analysis

> Lone Star Oracle Multi-Timeframe Technical Analysis 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 a multi-timeframe technical analysis scan (15m, 1h, 4h, 1d) for a given asset, returning a confluence score and AI-generated signal summary across all four timeframes.

## Facts

- Endpoint: GET https://ta.lonestaroracle.xyz/scan
- 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-c1eda08c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7zZzFfU6RErLrN5O8b24-

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-c1eda08c
```

Example prompt: Give me a multi-timeframe technical analysis scan for BTC/USDT — I want to see the confluence score and AI signal summary across the 15m, 1h, 4h, and daily charts.

## When to prefer this

Choose this endpoint when you need a holistic, multi-timeframe view of an asset's technical posture — especially when short-term and long-term signal confluence matters. It is ideal for pre-trade confirmation, automated signal filtering, or when a single timeframe scan is insufficient. Prefer this over the full 18-indicator single-timeframe endpoint when cross-timeframe alignment is the primary concern.

## Known failure modes

- Unknown or unsupported ticker symbol returns an error or empty result
- Network timeout if the upstream price or indicator feed is slow
- 402 Payment Required if the x402 micropayment is not included or fails
- Rate limiting if too many requests are made in quick succession
- Malformed response if the asset symbol format is incorrect

## How this service works

Multi-timeframe analysis — all 4 timeframes (15m, 1h, 4h, 1d) with confluence score and AI summary

## Output

Returns a structured analysis across four timeframes (15m, 1h, 4h, 1d), including per-timeframe indicator readings, an overall confluence score indicating directional agreement, and an AI-generated natural language summary of the combined signal.

## Example request

```json
{
 "symbol": "BTC-USD"
}
```

## Request schema (JSON Schema)

```json
{
 "name": "TechAnalysis — Multi-Timeframe Scan",
 "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"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "price": 82199.02,
     "symbol": "BTC-USD",
     "overall_signal": "buy",
     "confluence_score": 3
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ta-lonestaroracle-xyz-c1eda08c/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)
