# Trading Strategy Data — Batch Strategy Consensus

> Trading Strategy Data — Batch Strategy Consensus is a paid API for AI agents from strategysignals.duckdns.org, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Returns live trend signals, volatility regime, and trailing stop data for BTC, ETH, and/or SOL using a transparent 200-day SMA + trailing stop systematic methodology.

## Facts

- Endpoint: POST https://strategysignals.duckdns.org/tools/strategy-consensus/batch
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/trading-strategy-data-batch-strategy-consensus-77d01fba
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0s-rQSI8L_dbt7MA476WT

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 trading-strategy-data-batch-strategy-consensus-77d01fba -d '<json body>'
```

Example prompt: Pull the latest trend signals for BTC, ETH, and SOL — I want to know which assets are in a bullish regime right now, their trailing stop distances, and how far each is above or below its 200-day SMA.

## When to prefer this

Choose this endpoint when you need transparent, independently verifiable trend signals for BTC, ETH, or SOL based on a clearly defined systematic methodology (200-day SMA + 25% trailing stop). It is ideal when you want to cross-rank multiple assets in one call and receive both live signals and backtest performance statistics together. Prefer this over black-box signal providers when the user requires auditable, reproducible methodology.

## Known failure modes

- Invalid asset enum value (only BTC, ETH, SOL accepted) returns validation error
- Empty assets array may return empty signals array or error
- Payment not included or insufficient USDC causes 402 Payment Required
- Service unavailable or timeout from duckdns hosted endpoint (reliability risk)
- Stale price data if upstream market feed is delayed

## How this service works

Same as strategy-consensus, for 2-3 assets in one call -- cheaper than calling the single-asset endpoint that many times separately.

## Output

A JSON object containing per-asset signals (trend regime label, current price, price vs 200-day SMA percentage, volatility regime, volatility percentile, days since regime change, trailing stop distance and trigger price) plus methodology metadata including backtest Sharpe ratio, max drawdown, and total return over 5 years.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "assets": {
   "type": "array",
   "items": {
    "enum": [
     "BTC",
     "ETH",
     "SOL",
     "XRP",
     "ADA"
    ],
    "type": "string"
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "signals": [
   {
    "asset": "BTC",
    "price": 68420.5,
    "personalized": false,
    "trend_regime": "bullish",
    "sma_period_days": 200,
    "price_vs_sma_pct": 8.4,
    "volatility_regime": "normal",
    "volatility_percentile": 0.42,
    "regime_changed_days_ago": 47,
    "your_unrealized_pnl_pct": null,
    "trailing_stop_distance_pct": 14.2,
    "trailing_stop_trigger_price": 61200.1
   }
  ],
  "methodology": {
   "description": "200-day SMA macro regime + 25% trailing stop, 14-day re-entry cooldown",
   "sma_period_days": 200,
   "trailing_stop_pct": 0.25,
   "backtest_period_years": 5,
   "backtest_sharpe_ratio": 0.82,
   "backtest_reference_asset": "BTC",
   "backtest_max_drawdown_pct": 0.44,
   "backtest_total_return_pct": 2.69
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/trading-strategy-data-batch-strategy-consensus-77d01fba/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from strategysignals.duckdns.org](https://www.zero.xyz/host/strategysignals.duckdns.org/llms.txt)
