
Market Regime
- 50 installs
- 6 repo stars
- Updated March 13, 2026
- alphaonedev/openclaw-graph
market-regime is a Claude Code skill that analyzes financial market regimes (bull, bear, sideways), volatility, and trend shifts across asset classes to inform trading and risk decisions.
About
This skill analyzes financial market regimes to detect trends, volatility, and shifts across asset classes like stocks, bonds, and crypto. A developer uses it to evaluate market conditions before trades, assess portfolio risk, or backtest strategies. It classifies regimes using methods like moving averages and Bollinger Bands and requires at least one year of price data plus an OPENCLAW_API_KEY.
- Classifies market regimes like bull, bear, and sideways from price history
- Analyzes volatility and detects trend shifts across asset classes
- Outputs regime classifications, volatility scores, and duration forecasts
Market Regime by the numbers
- 50 all-time installs (skills.sh)
- Ranked #595 of 1,106 Finance & Trading skills by installs in the Skillselion catalog
- Data as of Jul 28, 2026 (Skillselion catalog sync)
market-regime capabilities & compatibility
Requires the OPENCLAW_API_KEY environment variable and at least one year of price data.
- Capabilities
- market data
- Works with
- tradingview
- Use cases
- trading · data analysis
- Pricing
- Bring your own API key
What market-regime says it does
This skill analyzes financial market regimes to detect trends, volatility, and shifts in asset classes like stocks, bonds, or cryptocurrencies.
Avoid if you lack historical data access, as it requires at least 1 year of price data.
npx skills add https://github.com/alphaonedev/openclaw-graph --skill market-regimeAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 50 |
|---|---|
| repo stars | ★ 6 |
| Last updated | March 13, 2026 |
| Repository | alphaonedev/openclaw-graph ↗ |
What it does
Classify market regimes and volatility across asset classes to inform trading and risk decisions.
Who is it for?
Classifying market regimes and volatility for trading decisions and risk management.
Skip if: Cases without at least one year of historical price data.
When should I use this skill?
You need to evaluate market conditions before trades, assess portfolio risk, or backtest a strategy.
What you get
- regime classifications, volatility scores, and duration forecasts
By the numbers
- requires at least 1 year of price data
Files
market-regime
Purpose
This skill analyzes financial market regimes to detect trends, volatility, and shifts in asset classes like stocks, bonds, or cryptocurrencies. It processes historical data to classify regimes (e.g., bull, bear, sideways) and provides actionable insights for trading or risk management.
When to Use
Use this skill when you need to evaluate market conditions for decision-making, such as before executing trades, assessing portfolio risk, or building predictive models. Apply it in volatile markets, during economic events, or for backtesting strategies. Avoid if you lack historical data access, as it requires at least 1 year of price data.
Key Capabilities
- Identifies market regimes using statistical methods like moving averages and Bollinger Bands.
- Analyzes volatility with metrics such as standard deviation or VIX equivalents.
- Detects trend shifts by comparing short-term vs. long-term indicators.
- Supports multiple asset classes via APIs or data feeds (e.g., Yahoo Finance, Alpha Vantage).
- Outputs regime classifications, volatility scores, and regime duration forecasts.
Usage Patterns
Invoke this skill via CLI for quick analysis or integrate it into Python scripts for automated workflows. Always provide asset symbols and time periods. For CLI, use synchronous calls; for API, handle asynchronous responses. Configure with a JSON file for custom parameters, e.g., set thresholds for volatility detection.
To run a basic analysis: 1. Set environment variable for authentication: export OPENCLAW_API_KEY=your_api_key_here. 2. Pass data sources via flags or config files. 3. Chain with other skills, like economic-indicators, for combined insights.
Common Commands/API
Use the OpenClaw CLI or REST API for interactions. Authentication requires the $OPENCLAW_API_KEY environment variable.
- CLI Command:
openclaw market-regime analyze --asset AAPL --period 90d --metric volatility - Flags:
--asset(required, e.g., stock symbol),--period(e.g., "30d" for 30 days),--metric(e.g., "volatility" or "trend"). - Output: JSON with regime type, volatility score, and key metrics.
- API Endpoint: POST to
https://api.openclaw.ai/v1/market-regime/analyze - Request body: JSON like
{"asset": "BTC-USD", "period": "1y", "metrics": ["volatility", "trends"]} - Response: 200 OK with JSON payload, e.g.,
{"regime": "bull", "volatility": 0.15}. - Headers: Include
Authorization: Bearer $OPENCLAW_API_KEY.
Code snippet for Python integration:
import requests
api_key = os.environ.get('OPENCLAW_API_KEY')
response = requests.post('https://api.openclaw.ai/v1/market-regime/analyze',
headers={'Authorization': f'Bearer {api_key}'},
json={'asset': 'GOOGL', 'period': '180d'})
print(response.json()['regime']) # Outputs e.g., 'bear'Config format: Use a YAML file for advanced settings, e.g.,
asset: SPY
period: 365d
metrics:
- volatility
- trends
thresholds:
volatility_high: 0.2Integration Notes
Integrate with other OpenClaw skills by piping outputs or using shared data models. For example, combine with trading-strategies skill for automated alerts. Ensure data consistency by using standard formats like OHLCV (Open, High, Low, Close, Volume). If using external data, map it to the skill's expected schema (e.g., CSV with columns: date, open, high, low, close). Test integrations in a sandbox environment first. For web apps, use webhooks to receive regime updates.
Error Handling
Handle errors by checking HTTP status codes or CLI exit codes. Common errors:
- 401 Unauthorized: Verify
$OPENCLAW_API_KEYis set and valid. - 400 Bad Request: Ensure JSON payload is correctly formatted (e.g., valid asset symbol).
- 429 Too Many Requests: Implement retry logic with exponential backoff.
In code, use try-except blocks:
try:
response = requests.post(...) # As above
response.raise_for_status()
except requests.exceptions.HTTPError as err:
print(f"Error: {err.response.status_code} - {err.response.text}")
# Retry or log the errorIf data fetch fails (e.g., invalid period), the skill returns a specific error code; parse the response for details like "ERR_INVALID_PERIOD".
Concrete Usage Examples
1. Example 1: Analyze Stock Volatility
- Task: Check if Apple (AAPL) is in a high-volatility regime over the last 60 days.
- Command:
openclaw market-regime analyze --asset AAPL --period 60d --metric volatility - Expected Output: JSON like
{"regime": "high_volatility", "score": 0.25}. Use this to trigger a sell alert in a trading bot.
2. Example 2: Identify Crypto Trends
- Task: Detect trend shifts for Bitcoin (BTC-USD) over the past year.
- API Call: POST to
/v1/market-regime/analyzewith body{"asset": "BTC-USD", "period": "1y", "metrics": ["trends"]} - Code Snippet:
response = requests.post(..., json={'asset': 'BTC-USD', 'period': '1y', 'metrics': ['trends']})
trends = response.json()['trends'] # e.g., ['upward_shift_at_2023-06-01']- Use the output to update a dashboard or adjust investment allocations.
Graph Relationships
- Related to: economic-indicators (depends on for macro data), trading-strategies (provides input for strategy decisions).
- Clusters with: financial (core cluster for this skill).
- Tags overlap: finance, volatility-analysis (shared with risk-assessment skills).
Related skills
FAQ
What does market-regime output?
Regime classifications (bull, bear, sideways), volatility scores, and regime duration forecasts.
How much data does it need?
It requires at least one year of historical price data.