Built for Autonomous Trading Agents

One GET request. One action field. 100% bounded regime accuracy (126+ graded).

3-Line Integration

import requests

r = requests.get("https://api.harrisoncollab.com/v1/regime/live/BTCUSDT",
                  headers={"Authorization": "Bearer rn_agent_YOUR_KEY"})

if r.json()["action"] == "avoid":
    skip_trade()  # structure fragmenting
elif r.json()["action"] == "reduce":
    execute(size=intended * r.json()["exposure"])  # scale down
else:
    execute(size=intended)  # full size

Regime Types

RegimeActionWhat It Means
boundedproceedPrice expected within envelope. Trade at full size.
activereduceDynamic conditions. Multiply position by exposure scalar.
unstableavoidStructure fragmenting. Skip this trade.

Pricing

Free Tier

$0/day
  • 50 API calls per day
  • No credit card required
  • All regime endpoints
  • Provision via API

Metered

$0.02/call
  • Beyond 50 free calls
  • Up to 10,000 calls/day
  • Billed via Stripe
  • No commitment

Get Your Free API Key

No signup form. No credit card. 50 calls/day free.

Verify the Track Record

No other crypto signal service publishes every call with a timestamp and a pass/fail grade. Most won't even tell you their hit rate. Every ReNoUn prediction is public, timestamped, and graded against the 1-hour actual price outcome. No cherry-picking, no hidden losses.

Full track record · Live signal feed on X · Dashboard (6h delayed)

FAQ

Does this predict price direction?

No. ReNoUn classifies structural regimes only. It tells you whether conditions are bounded, active, or unstable — not which way price will move.

How is accuracy measured?

Every prediction is timestamped and graded against the actual 1-hour price outcome. When ReNoUn classifies a regime as bounded (proceed), it has been correct 100% of the time across 126+ graded predictions — price stayed within the expected envelope every time.

Can I use this with my existing trading bot?

Yes. ReNoUn is an overlay, not a replacement. Add a single GET request before your trade execution logic. If the action is "avoid", skip. If "reduce", scale down. Otherwise proceed normally.

What happens if I exceed 50 calls/day?

Without a payment method, calls stop at 50. Add a payment method at harrisoncollab.com/billing and calls beyond 50 are billed at $0.02 each via Stripe — no interruption.

Do you support non-Binance data?

Yes. POST /v1/regime accepts any OHLCV data. The /v1/regime/live endpoint fetches from Binance automatically, but you can bring your own data from any exchange.