# Runbot StratForge Quick Strategy

> Runbot StratForge Quick Strategy is a paid API for AI agents from mcp.runbot.io, paid per call via x402, $3.99/call, status unknown (last checked 2026-09-16).

Builds, optimizes, and exports a crypto trading strategy based on user-defined parameters, monetized via x402 micropayment.

## Facts

- Endpoint: POST https://mcp.runbot.io/v1/quick-strategy
- Price: $3.99/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/runbot-stratforge-quick-strategy-5c727aaf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jISqNYnf-P8rXc8XTw-dI

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 runbot-stratforge-quick-strategy-5c727aaf -d '<json body>'
```

Example prompt: Build me a momentum-based crypto trading strategy for BTC/USDT with moderate risk tolerance and a swing-trading time horizon, then export it so I can load it into my trading bot.

## When to prefer this

Choose this endpoint when you need a complete, ready-to-use crypto trading strategy generated on demand rather than manually backtesting or coding one yourself. Best suited for agents that need to rapidly prototype algorithmic trading strategies, export configurations for bots, or surface strategy recommendations for specific crypto pairs and risk profiles.

## Known failure modes

- Invalid or unsupported trading pair causes a 400 error
- Payment not settled via x402 results in a 402 Payment Required response
- Conflicting strategy parameters (e.g. incompatible risk level and timeframe) may return a validation error
- Service downtime or timeout on complex strategy optimization requests
- Unsupported indicator combinations may result in a fallback or degraded strategy output

## How this service works

x402-monetized API to build, optimize, and export crypto trading strategies. See /llms.txt.

## Output

Returns a fully specified crypto trading strategy including entry and exit conditions, indicator settings, risk parameters, and an exportable configuration ready for use in a trading bot or manual execution.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "market": {
   "type": "string"
  },
  "objective": {
   "type": "string"
  },
  "timeframe": {
   "type": "string"
  },
  "description": {
   "type": "string"
  },
  "market_type": {
   "type": "string"
  },
  "backtest_window_days": {
   "type": "integer"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/runbot-stratforge-quick-strategy-5c727aaf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mcp.runbot.io](https://www.zero.xyz/host/mcp.runbot.io/llms.txt)
