5-indicator macro regime classifier
Retail vs Professional
Retail investors focus too much on price. Professional traders focus on risk pricing, sentiment, and market depth.
Instead of asking "Is the S&P 500 up or down?", build a narrative by combining cross-asset signals to classify the market into one of 6 regime scenarios.
The Signals
Institutional Refinements
Moderate volatility, cautious-but-not-fearful sentiment, credit stable. Market digesting routine weakness.
Elevated volatility, fearful sentiment, credit still holding. Institutions hedging but not de-grossing.
High volatility, extreme fear, broad market selloff — but no systemic credit or liquidity collapse.
Crisis-level volatility with no sign of cooling. Credit markets breaking down, DXY surging — systemic stress confirmed.
Very low volatility sustained over days, extreme greed, narrow mega-cap FOMO rally. Market priced for perfection.
Low volatility, mild greed, market grinding higher. Often driven by narrow leadership — watch for breadth deterioration.
🌐 DXY Circuit Breaker (global override — applies across all scenarios)
One API call returns the full regime classification — scenario, all institutional signals, DXY override status, and a signal-only regime label.
import requests url = "https://market-signals-tracker.p.rapidapi.com/api/signals" headers = { "X-RapidAPI-Key": "YOUR_API_KEY", "X-RapidAPI-Host": "market-signals-tracker.p.rapidapi.com", } data = requests.get(url, headers=headers).json() scenario = data["scenario"] print(f"Scenario {scenario['scenario_id']}: {scenario['name']} {scenario['icon']}") print(f"Signal: {scenario['action']}") print(f"VIX: {data['signals']['vix']['value']} ({data['signals']['vix']['label']})")
scenario.name
→
loading…