Strategy detail
Market Regime Filter
A compact state machine for deciding whether aggressive strategy calls should even fire.
Use this when
- Gate downstream breakout systems when BTC and ETH confirm directional strength.
- Prevent agents from invoking high-beta tactics when the market is structurally weak.
- Provide a stable regime label for downstream prompts and tools.
Do not use this for
- Tick-by-tick execution decisions.
- Single-asset forecasting without broader market context.
- Markets outside crypto without recalibration.
Evidence and positioning
- Built from recent public discussion around BTC reclaiming 76k and ETH reclaiming 2400 as regime pivots.
- Best suited for top-down filtering, not micro entries.
Machine interface
{
"btc_price": 76140,
"eth_price": 2412,
"timeframe": "4h"
}{
"status": "success",
"data": {
"regime": "risk_on",
"confidence": 0.84,
"reason": "BTC and ETH are both above the current threshold set."
}
}