← Back

RCQ BTC Trading Strategy — Methodology & Guardrails

Purpose This page explains what we do and how we protect you without revealing proprietary code or signal recipes. It is intended for customers evaluating RCQ BTC Trading Strategy as SaaS/API, white‑label partners, and compliance reviewers.

1) Strategy Overview

2) Signal Types

Each signal includes: timestamp (UTC), direction, suggested risk (bps of equity), soft stop/TP guidance, and validity window.

3) Risk & Guardrails (Non‑Negotiables)

Account‑level controls (client enforced; RCQ recommends defaults below):

Circuit Breakers:

Trade‑level controls

4) Data, Models & Testing (What We Disclose)

We publish methodology standards and controls, not the formulae. Partners may receive additional audit artifacts under NDA.

5) Execution Model

6) API (Public Spec — Stable)

Base URL: /v1/
GET /signals/latest?symbol=BTC-USD
GET /signals/history?symbol=BTC-USD&limit=500
POST /webhooks/subscribe
GET /risk/rails
POST /simulate/order
Rate limits: 60 req/min default; burst tokens available on enterprise plans.
Auth: OAuth2 client credentials + per‑request HMAC; IP allow‑lists supported.

7) Uptime, Incidents & Maintenance

SLO: 99.5% monthly signal API availability. Maintenance pre‑announced; post‑mortems within 72 hours.

8) Security & Privacy

TLS 1.2+, HSTS, HMAC webhooks; encryption at rest; least‑privilege; SOC2‑aligned roadmap.

9) Compliance, Disclosures & Ethics

No advice; no custody; performance is not indicative; client must comply with local rules; conflict policies apply.

10) Customer Onboarding & Support

Keys → rails → webhook → paper trade ≥2 weeks → go live with loss halts & DD locks. Support tiers: Email → Slack/Teams → TAM.

11) Governance & Change Management

Monthly minor releases; urgent patches as needed; 90‑day deprecation windows.

12) KPIs We Publish

API SLO, latency p50/p95, live slippage vs budget, guardrail breach counts, version adoption.

13) Roadmap (Non‑binding)

ETH streams, client‑hosted adapters, enhanced structure models, SOC2 Type II.

14) Legal Footer

RCQ provides research/signals/automation; no execution, custody, or investment advice. Trading involves risk.

Appendix A — Recommended Default Risk Rails (Template)

{
  "per_order_notional_cap_bps": 100,
  "per_symbol_exposure_cap_bps": 2000,
  "daily_loss_halt_bps": 150,
  "total_drawdown_lock_bps": 1200,
  "max_concurrent_positions": 2,
  "slippage_budget_bps": 10,
  "macro_lockout_calendar": ["FOMC","CPI"],
  "exchange_anomaly_triggers": { "spread_widening_bps": 25, "feed_staleness_seconds": 3 }
}

Appendix B — Signal Payload (Example)

{
  "symbol": "BTC-USD",
  "timestamp_utc": "2025-10-20T18:32:00Z",
  "type": "ENTRY_LONG",
  "confidence": 0.62,
  "risk_budget_bps": 75,
  "soft_stop": {{ "type": "vol_scaled", "distance_bps": 90 }},
  "tp_bands_bps": [80, 160, 260],
  "valid_for_seconds": 300,
  "notes": "Regime=Neutral→Risk-On; Trend=Range→Break; Liquidity OK"
}

Appendix C — Incident Communication Template