One GET request. One action field. 100% bounded regime accuracy (126+ graded).
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 | Action | What It Means |
|---|---|---|
bounded | proceed | Price expected within envelope. Trade at full size. |
active | reduce | Dynamic conditions. Multiply position by exposure scalar. |
unstable | avoid | Structure fragmenting. Skip this trade. |
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)
No. ReNoUn classifies structural regimes only. It tells you whether conditions are bounded, active, or unstable — not which way price will move.
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.
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.
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.
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.