---
name: signal.quickai.build
description: signal.quickai.build provides AI-generated technical analysis snapshots for cryptocurrency tokens. Given a token identifier, it returns current price, market cap, 24h volume, and a suite of computed indicators including Bollinger Bands, SMA, EMA, RSI, MACD, Stochastic, ATR, VWMA, and Fractals.
host: signal.quickai.build
---

# signal.quickai.build

This host is a single-endpoint technical analysis service for crypto tokens. It serves agents that need a structured, multi-indicator snapshot to inform a trading or research decision without building their own indicator pipeline. It is distinct from price-feed aggregators in that it returns pre-computed trend and momentum assessments alongside raw price data, and distinct from trading platforms in that it does not execute orders or stream live data.

## When to use this host

Use signal.quickai.build when an agent needs a pre-computed, multi-indicator technical analysis snapshot for a specific cryptocurrency token in a single call. This is appropriate for research pipelines, signal-based alerting, or decision-support agents that consume structured indicator data. Do not use this host for real-time or streaming price feeds — use a dedicated market data provider instead. Do not use it for order execution — route those requests to a brokerage or DEX integration. It does not support non-crypto assets, so for equities or forex technical analysis, a different host is required. With only one skill available, there is no multi-step chaining possible within this host.

## Capabilities

### Technical Analysis Snapshot

Fetches a complete single-shot technical analysis report for a given crypto token, including price metadata and a full suite of trend, momentum, and volatility indicators.

- **`fetch-crypto-signal`** — Returns AI-generated technical analysis signals for a crypto token, including price, market cap, 24h volume, and a suite of indicators (Bollinger, SMA, EMA, RSI, MACD, Stochastic, ATR, VWMA, Fractals).

## Skill reference

### `fetch-crypto-signal`

**QuickAI Signal** — Returns AI-generated technical analysis signals for a crypto token, including price, market cap, 24h volume, and a suite of indicators (Bollinger, SMA, EMA, RSI, MACD, Stochastic, ATR, VWMA, Fractals).

*Use when:* Use when an agent needs a structured technical analysis snapshot for a specific cryptocurrency token, including trend assessments and momentum indicators, to inform a trading or research decision.

*Not for:* Do not use for real-time streaming price feeds or order execution; this is a single-shot signal snapshot. Not suitable for non-crypto assets.

**Inputs:**

- `token` (string, required) — Ticker symbol of the cryptocurrency to analyze (e.g. PEPE, BTC, ETH).

**Returns:** Returns a JSON object with token price, market cap, 24h volume, 24h change, and a full set of technical indicators (Bollinger, SMA, EMA, VWMA, RSI, MACD, ATR, Stochastic, Fractals) with trend assessments for the requested token.

**Example:** `GET https://signal.quickai.build/signal?token=PEPE`

---
