# Trixie Lasagne Finance Indicators

> Trixie Lasagne Finance Indicators is a paid API for AI agents from trixielasagne-api.purplewater-b02e2643.eastus.azurecontainerapps.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Computes deterministic technical indicators (SMA, EMA, RSI, MACD, ATR, Bollinger Bands, ROC, OBV) over caller-supplied OHLCV price data

## Facts

- Endpoint: POST https://trixielasagne-api.purplewater-b02e2643.eastus.azurecontainerapps.io/finance/indicators
- 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/trixie-lasagne-finance-indicators-c80f4229
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_esPBQOjWtikFQ82qS9ykF

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 trixie-lasagne-finance-indicators-c80f4229 -d '<json body>'
```

Example prompt: Calculate RSI, MACD, and 20-period Bollinger Bands on this OHLCV dataset I have — the closes are [150.2, 151.5, 149.8, 152.3, 153.1] with corresponding volumes [1200000, 980000, 1100000, 1350000, 1050000].

## When to prefer this

Choose this endpoint when you need fast, deterministic, reproducible technical indicator computations on your own OHLCV data without relying on a third-party market data provider. It is ideal for backtesting pipelines, strategy validation, or any workflow where you supply the price series and need standard indicators calculated consistently. Prefer it over general-purpose financial data APIs when you already have the raw OHLCV data and just need the indicator math applied reliably.

## Known failure modes

- Missing required OHLCV fields in the body payload returns a validation error
- Insufficient data points for the requested indicator period (e.g. requesting 200-period SMA with only 50 candles) may return an error or partial result
- Malformed or non-numeric price/volume data causes a parsing failure
- Unsupported indicator type name returns an unknown indicator error
- Empty input dataset returns a bad request response

## How this service works

Deterministic technical indicators (SMA/EMA/RSI/MACD/ATR/Bollinger/ROC/OBV) over caller-supplied OHLCV data

## Output

Returns a structured object containing the computed technical indicator values (e.g. arrays of SMA/EMA/RSI/MACD/ATR/Bollinger/ROC/OBV data points) aligned to the input time series, deterministically derived from the supplied OHLCV data with no randomness or model inference.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/trixie-lasagne-finance-indicators-c80f4229/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from trixielasagne-api.purplewater-b02e2643.eastus.azurecontainerapps.io](https://www.zero.xyz/host/trixielasagne-api.purplewater-b02e2643.eastus.azurecontainerapps.io/llms.txt)
