Crypto Regime Detection Explained: The Bull/Bear Indicator Your Bot Is Missing
If you run a trading bot — or even trade manually — you already know the pain: a strategy that prints money for three months suddenly starts bleeding. You haven't changed anything. The market changed.
That shift from trending to ranging, from risk-on to risk-off, from bull to bear — that's a regime transition. And detecting it accurately, in real time, is the single highest-leverage improvement you can make to any trading system.
This post explains what crypto regime detection is, why single indicators fail at it, and how Regime's 10-signal weighted ensemble approach works under the hood.
What Is a Market Regime?
A market regime is the underlying behavioral state of a market. In crypto, we classify three primary regimes:
- Bull — Sustained upward momentum, positive funding rates, expanding leverage, high confidence. Breakout and momentum strategies thrive.
- Bear — Persistent downward pressure, negative funding, deleveraging, fear dominance. Mean reversion and defensive strategies perform best.
- Chop — No clear direction, mixed signals, compressed volatility followed by violent fakeouts. Most strategies lose money here.
The key insight: the optimal trading strategy is completely different in each regime. A momentum strategy that returns +40% in a bull market can return -60% running the exact same logic in a bear. The strategy didn't break. The regime changed.
Why Single Indicators Fail
Most traders attempt regime detection with one indicator:
- "BTC is above the 200-day SMA, so we're bullish"
- "Fear & Greed is at 25, so we're bearish"
- "Funding rates are positive, so we're in a bull market"
Each of these captures one dimension of market state. None of them captures the full picture. Here's why that matters:
The 200-day SMA whipsaws at transitions. BTC can hover around it for weeks, generating false signals daily. It also lags badly — by the time price is firmly above the SMA, you've missed the first 10-15% of the move.
Fear & Greed is sentiment-driven and reflexive. It hit extreme fear in March 2025 while BTC was consolidating at $82K — not exactly a bear market. Its correlation with actual forward returns is only ~0.3.
Funding rates tell you about leverage positioning, but they can stay positive during corrections and flip negative during healthy pullbacks within bull trends.
No single signal has the resolution to classify regimes accurately. You need multiple orthogonal signals combined intelligently.
The 10-Signal Weighted Ensemble Approach
Regime uses a weighted ensemble of 10 quantitative signals across four categories. Each signal votes independently, and the votes are weighted by historical predictive power.
Price & Trend Signals (3)
- BTC Trend — Multi-timeframe moving average analysis. Not just "above or below the 200 SMA" but a composite of short, medium, and long-term trend alignment.
- ETH/BTC Ratio Trend — When ETH outperforms BTC, it signals risk appetite and altcoin rotation. When it underperforms, capital is consolidating into BTC (defensive).
- BTC Dominance Direction — Rising dominance = risk-off rotation. Falling dominance = risk-on altcoin expansion.
Sentiment & Crowd Signals (3)
- Fear & Greed Index — Mapped to regime buckets with hysteresis to avoid whipsaws at boundaries.
- Aggregated Funding Rates — Cross-exchange funding across BTC, ETH, and major alts. Extreme positive = overleveraged bull (caution). Extreme negative = capitulation (opportunity).
- Open Interest Change — Rising OI with rising price = confident trend. Rising OI with falling price = building short pressure.
On-Chain & Macro Signals (2)
- DeFi TVL Trend — TVL expansion indicates capital deployment and ecosystem confidence. TVL contraction indicates capital flight.
- Stablecoin Supply — Growing stablecoin supply = dry powder on the sidelines. Shrinking = capital exiting crypto entirely.
Macro Overlay (2)
- DXY (Dollar Index) Trend — Strong dollar historically pressures crypto. Weakening dollar provides a tailwind.
- VIX-Crypto Divergence — When traditional market volatility spikes but crypto holds, it signals decoupling strength. When both spike, risk-off is broad-based.
Each signal produces a vote: bullish (+1), bearish (-1), or neutral (0). These are weighted and summed to produce a composite score, which maps to the final regime classification and a confidence percentage.
Why Confidence Matters
The regime label alone (bull/bear/chop) is useful. But the confidence score is where the real edge lives.
A bull regime at 85% confidence means nearly all signals agree — strong trend, positive sentiment, healthy leverage, favorable macro. This is where you size up and run aggressive strategies.
A bull regime at 55% confidence means the ensemble barely tips bullish. Several signals are conflicting. This is where you reduce exposure and tighten stops.
In our backtesting across 2024-2026, filtering trades by confidence > 70% improved Sharpe ratio by 0.4 compared to using the regime label alone.
See It Live
You can hit Regime's API right now with no API key:
curl -s https://getregime.com/api/v1/market/regime | jq
Response:
{
"regime": "bear",
"confidence": 0.72,
"signals": {
"btcTrend": "bearish",
"ethBtcTrend": "bearish",
"fearGreed": "neutral",
"fundingRates": "bearish",
"oiChange": "neutral",
"btcDominance": "bullish",
"defiTvl": "neutral",
"stablecoinSupply": "bullish",
"dxyTrend": "bearish",
"vixCrypto": "neutral"
},
"breakdown": {
"bullish": 2,
"bearish": 3,
"neutral": 5
},
"timestamp": "2026-03-30T14:00:00Z"
}
Every signal is transparent. You can see exactly why the classifier reached its conclusion. No black box.
How Traders Use Regime Detection
1. Strategy Selection
Run different strategies based on the current regime. Bull = momentum/breakout. Bear = mean reversion or cash. Chop = reduce size or sit out.
2. Position Sizing
Scale position size by confidence. At 85%+ confidence, full size. At 60-70%, half size. Below 55%, minimal or flat.
3. Risk Management
Tighten stops in low-confidence or transitional regimes. Widen stops in high-confidence trending regimes where you want to ride the move.
4. Alert on Transitions
The most valuable signal is the regime change. When the market shifts from bull to chop, or from chop to bear, that transition is where most traders get caught. Regime's webhook system can notify you instantly when a transition occurs.
Regime Detection vs. Trend Following
A common question: "How is this different from a trend-following indicator?"
Trend following answers: "Is price going up or down?"
Regime detection answers: "What type of market environment are we in?"
The distinction matters because chop regimes have no clear trend, yet trend followers keep getting whipsawed. Regime detection explicitly identifies chop and tells you to stand aside — which is often the most profitable "trade" you can make.
Additionally, regime detection incorporates non-price data (funding, OI, sentiment, macro) that pure trend indicators ignore. This makes it earlier to detect transitions and more robust to fakeouts.
Getting Started
Regime's free tier gives you 500 calls/day with 15-minute delayed data — enough to prototype and validate. The /api/v1/market/regime endpoint requires no authentication.
For real-time data, the Pro tier ($49/mo) includes the full intelligence suite: crowd positioning, macro divergences, regime history, and webhook alerts on transitions.
The best trading strategy is the one that knows when not to trade. Regime detection gives you that knowledge.
Try it now: getregime.com/quickstart
Try Regime Intelligence
Regime is a real-time crypto market regime detection API. One endpoint tells you if the market is bull, bear, or chop — so your bot only trades when conditions match your strategy.
Top comments (0)