From openbb-terminal
Retrieves and analyzes macroeconomic indicators like GDP, inflation, interest rates, and employment using OpenBB for countries including US, UK, EU, CN, JP. Outputs trends, forecasts, data values, and market implications.
How this command is triggered — by the user, by Claude, or both
Slash command
/openbb-terminal:openbb-macroThe summary Claude sees in its command listing — used to decide when to auto-load this command
# OpenBB Macroeconomic Analysis Analyze global macroeconomic trends and indicators using OpenBB Platform. ## Usage ## What This Command Does Retrieves and analyzes macroeconomic indicators to understand economic trends and market implications. ## Key Features ### Economic Indicators - **GDP**: Growth rates, forecasts, components - **Inflation**: CPI, PPI, PCE, core inflation - **Interest Rates**: Federal funds, treasury yields, central bank rates - **Employment**: Unemployment, NFP, job openings, labor participation - **Consumer**: Confidence, spending, retail sales - **Manufacturin...
Analyze global macroeconomic trends and indicators using OpenBB Platform.
/openbb-macro [--country US|UK|EU|CN|JP] [--indicators gdp|inflation|rates|employment|all]
Retrieves and analyzes macroeconomic indicators to understand economic trends and market implications.
from openbb import obb
# GDP Analysis
gdp_data = obb.economy.gdp(country="US")
print(f"GDP Growth: {gdp_data.growth_rate:.2f}%")
print(f"GDP per Capita: ${gdp_data.gdp_per_capita:,.0f}")
# Inflation Data
cpi = obb.economy.cpi(country="US")
print(f"CPI (YoY): {cpi.yoy_change:.2f}%")
print(f"Core CPI: {cpi.core_cpi:.2f}%")
# Interest Rates
rates = obb.economy.fed_rates()
print(f"Fed Funds Rate: {rates.current_rate:.2f}%")
print(f"10Y Treasury: {rates.treasury_10y:.2f}%")
# Employment
employment = obb.economy.employment()
print(f"Unemployment Rate: {employment.unemployment_rate:.1f}%")
print(f"NFP (last month): {employment.nfp_change:+,}")
# Analyze impact on markets
print("\n💡 Market Implications:")
if cpi.yoy_change > 3.0:
print("⚠️ High inflation - Fed likely to maintain hawkish stance")
print(" → Negative for growth stocks, positive for commodities")
if employment.unemployment_rate < 4.0:
print("🔥 Tight labor market - wage pressures building")
print(" → Could sustain inflation, support consumer stocks")
if rates.current_rate > 5.0:
print("💸 High interest rates - restrictive monetary policy")
print(" → Headwind for equities, tailwind for bonds")
# US macro overview
/openbb-macro --country=US --indicators=all
# UK inflation focus
/openbb-macro --country=UK --indicators=inflation
# China GDP analysis
/openbb-macro --country=CN --indicators=gdp
/openbb-equity/openbb-crypto/openbb-portfolio23plugins reuse this command
First indexed Dec 31, 2025
Showing the 6 earliest of 23 plugins
npx claudepluginhub earth-treasure-inc/claude-code-plugins-plus-skills-1d8dce0c --plugin openbb-terminal/macro-ratesBuilds a macroeconomic and rates dashboard showing indicators, yield curves, inflation, and swap spreads for a given country and timeframe.
/sentimentChecks market sentiment using Fear & Greed indices, market movers, and optional Google Trends keywords, then synthesizes a risk assessment summary.
/scenario-analyzerAnalyzes a news headline to generate an 18-month scenario report with 1st/2nd/3rd-order impacts, stock picks, and a second opinion.
/market-scanRuns a multi-framework strategic analysis (SWOT, PESTLE, Porter's Five Forces, Ansoff Matrix) on a product, market, or industry and produces a synthesized report.