Registry / analytics / openbb-equity

openbb-equity

JSON →
library1.6.2pypypi✓ verified 84d ago

OpenBB Equity is an extension for the OpenBB Platform that provides access to equity market data, including historical prices, fundamentals, ownership, and more. It integrates with multiple data providers like Yahoo Finance, Intrinio, Polygon, and others. Current version: 1.6.2. Release cadence follows OpenBB Platform updates, typically monthly.

pip install openbb-equity
INSTALL
IMPORT
SIG · OPENBB-EQUITY
O
openbb-equity
analyticspythonv1.6.2
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

OBBject
from openbb import obb
from openbb_core import OBBject
The main entry point is the 'obb' object, not OBBject directly.

Initialize the OpenBB platform and fetch historical equity prices.

from openbb import obb # Set your API keys (optional) obb.account.login(pat=os.environ.get('OPENBB_PAT', '')) # Get historical prices for AAPL df = obb.equity.price.historical('AAPL').to_dataframe() print(df.head())
Debug
Known issues
breakingIn version 1.0.0, the import path changed from 'openbb_terminal' to 'openbb'. Old code using 'from openbb_terminal import ...' will break.
fix
Replace 'from openbb_terminal' with 'from openbb' and update method calls accordingly.
affects: >=0.x,<1.0.0
deprecatedThe 'load' function for equity data is deprecated. Use 'obb.equity.price.historical' instead.
fix
Replace 'load(ticker)' with 'obb.equity.price.historical(ticker)'.
affects: >=1.0.0,<1.5.0
gotchaAPI keys are required for many data providers, but the error message may be misleading if missing. Always set keys via environment variables or obb.account.login().
fix
Set OPENBB_PAT for OpenBB Hub or provider-specific keys (e.g., POLYGON_API_KEY).
affects: all
Errors
Common errors & fixes
ModuleNotFoundError: No module named 'openbb'
The openbb package is not installed.
fix
Install the OpenBB platform: pip install openbb (or openbb-equity as an extension).
AttributeError: module 'openbb' has no attribute 'equity'
openbb-equity extension not installed or not loaded.
fix
Install openbb-equity: pip install openbb-equity. Then restart the Python interpreter.
ValueError: Invalid symbol: ...
Ticker symbol not recognized by the data provider.
fix
Ensure the symbol is correct and supported by the chosen provider (e.g., Yahoo Finance uses standard tickers like 'AAPL').
Upgrade
Version history
1.6.2latest on PyPI · released May 26, 2026
Audit
Dependencies
openbb-corerequiredProvider loader and base classes
openbb-yfinanceoptionalYahoo Finance data provider
openbb-intriniooptionalIntrinio data provider
openbb-polygonoptionalPolygon data provider
Agent activity
24 hits · last 30 days
node
20
Amazon
1
OpenAI (training)
1
Resources

No resource links recorded.

openbb-equity — pip install openbb-equity · libregistry