openbb-terminal

Open-source investment research terminal integration - comprehensive equity analysis, crypto tracking, macro indicators, portfolio optimization, and AI-powered financial insights using OpenBB Platform

View on GitHub
Author Jeremy Longshore
Namespace @jeremylongshore/claude-code-plugins-plus
Category finance
Version 1.0.0
Stars 1,193
Downloads 4
self.md verified
Table of content

Open-source investment research terminal integration - comprehensive equity analysis, crypto tracking, macro indicators, portfolio optimization, and AI-powered financial insights using OpenBB Platform

Installation

npx claude-plugins install @jeremylongshore/claude-code-plugins-plus/openbb-terminal

Contents

Folders: agents, commands, skills

Files: LICENSE, README.md

Documentation

Professional-grade financial analysis powered by OpenBB Platform - Comprehensive equity research, cryptocurrency analysis, macroeconomic insights, and portfolio management, all integrated with Claude’s AI capabilities.


๐ŸŽฏ What This Plugin Does

Transform Claude Code into a powerful investment research terminal using OpenBB’s open-source financial data platform.

Features:


๐Ÿš€ Quick Start

Installation

# Add marketplace
/plugin marketplace add jeremylongshore/claude-code-plugins

# Install OpenBB Terminal plugin
/plugin install openbb-terminal@claude-code-plugins-plus

Prerequisites

# Install OpenBB Platform (Python 3.9.21 - 3.12)
pip install openbb

# Optional: Install with specific data providers
pip install openbb[all]  # All providers
pip install openbb[yfinance]  # Just Yahoo Finance

Basic Usage

# Analyze a stock
/openbb-equity AAPL

# Check crypto market
/openbb-crypto BTC

# Review portfolio
/openbb-portfolio --analyze

# Macro overview
/openbb-macro --country=US

# Options analysis
/openbb-options SPY

# AI research report
/openbb-research TSLA --depth=deep

FREE Data Sources: No Paid Subscriptions Required

Use OpenBB Terminal with 100% free data providers - no Bloomberg, Refinitiv, or premium API costs.

Quick Comparison

Data TypePaid ProvidersFREE Providers
Stock DataBloomberg ($20K+/year)Yahoo Finance: $0
Crypto DataCoinMetrics ($500+/mo)CoinGecko API: $0
Options DataIntrinio ($200+/mo)CBOE/NASDAQ (free): $0
Macro DataRefinitiv ($1K+/mo)FRED (Federal Reserve): $0
FundamentalsFactSet ($12K+/year)Alpha Vantage (free tier): $0

Annual Savings: $25,000-50,000 for professional-grade data.

Why Free Data Providers?

Benefits:

Free Provider Ecosystem:

Setup Guide (Free Tier Only)

1. Install OpenBB with Free Providers

# Install OpenBB Platform
pip install openbb

# Install ONLY free provider packages
pip install openbb[yfinance]  # Yahoo Finance (FREE)

# No need for paid providers!

2. Configure Free API Keys (Optional)

from openbb import obb

# Alpha Vantage (FREE tier: 500 calls/day)
# Get free key at: https://www.alphavantage.co/support/#api-key
obb.user.credentials.alpha_vantage_api_key = "YOUR_FREE_KEY"

# FRED (FREE, unlimited)
# Get free key at: https://fred.stlouisfed.org/docs/api/api_key.html
obb.user.credentials.fred_api_key = "YOUR_FREE_KEY"

# Save configuration
obb.user.save()

No credit card required for any of these keys.

3. Use Free Data Sources

from openbb import obb

# Stock data (Yahoo Finance - FREE)
stock_data = obb.equity.price.historical(
    symbol="AAPL",
    provider="yfinance"  # FREE
)

# Crypto data (CoinGecko - FREE)
crypto_data = obb.crypto.price.historical(
    symbol="BTC",
    provider="coingecko"  # FREE
)

# Macro data (FRED - FREE)
gdp_data = obb.economy.gdp(
    country="US",
    provider="fred"  # FREE
)

# Options data (CBOE - FREE)
options_chains = obb.derivatives.options.chains(
    symbol="SPY",
    provider="cboe"  # FREE
)

Cost Comparison

Premium Approach (Paid)

Annual Subscriptions:

Free Approach (This Plugin)

Annual Subscriptions:

Savings: $56,400/year with comparable data quality.

Free vs Paid: Data Quality Comparison

| Metric | Paid (Bloomberg) | FREE (Yahoo + FRED) | |——–|————–

…(truncated)

Source

View on GitHub

Tags: finance financeinvestmentopenbbstockscryptoportfoliotradingfinancial-analysismarket-dataequity-researchoptionsforexmacroeconomicsquantai-finance