Skip to content

Releases: OpenBB-finance/OpenBB

4.3.2

11 Sep 16:11
4bc5cd0
Compare
Choose a tag to compare

Thank you and welcome to our new contributors πŸ”₯

@mmistroni and @nnsW3

Summary πŸŽ‰

This release provides bug fixes, example notebook updates, security updates, additional screener presets, as well as new public data provider extensions for the Commodity Futures Trading Commission (CFTC), and The Bureau of Labor Statistics (BLS).

What's changed πŸš€

🚨 OpenBB Platform Breaking Changes

  • [Feature] Flatten Revenue By Geography and Business Line @deeleeramone (#6624)
    • In, obb.equity.fundamental.revenue_per_geography and revenue_per_segment:
      • The breakdown of revenue is now a flat response instead of a nested dictionary, formatted more favorably for Excel, SQL, and pivot tables.

πŸ¦‹ OpenBB Platform Enhancements

  • [Feature] Add CFTC Provider and Replace Nasdaq Datalink For COT Reports @deeleeramone (#6643)

    • The openbb-cftc extension provides public access to the complete, and current, Commitments of Traders Reports
    • Endpoints:
      • obb.regulators.cftc.cot
      • obb.regulators.cftc.cot_search
    • Optionally, register for a CFTC app token by creating an account here then generating a token here
  • [Feature] Add BLS Provider Extension With Endpoints For Search and Time Series @deeleeramone (#6630)

    • The openbb-bls extension provides public access to the BLS V2 series API with multi-series output and metadata.
    • Requires simple email registration and each key is limited to 500 calls per day, where calls are bucketed into groups of 50 symbols in 20 year historical windows. Register here
    • The extension comes with an assets folder containing series IDS and applied metadata maps representing millions of unique time series.
    • Endpoints:
      • obb.economy.survey.bls_search - no registration or key is required for this endpoint.
      • obb.economy.survey.bls_series - built-in chart when chart=True and openbb-charting is installed.
  • [Feature] Add Top Export Destinations By Country From UN Comtrade International Trade Statistics Database (EconDB) @deeleeramone (#6644)

    • Extends the openbb-econdb provider with a new function.
    • New endpoint:
      • obb.economy.export_destinations
  • [Feature] adding extra presets @mmistroni (#6623)

    • Adds to the library of openbb-finviz screener presets.
    • The new presets will populate in: ~/OpenBBUserData/presets/finviz
    • Added to obb.equity.screener(preset=%s, provider="finviz"):
      • canslim
      • fastgrowths
      • newhigh
    • All presets can be modified by the user in any text editor, with changes applied to the next function call.

πŸ› OpenBB Platform Bug Fixes

  • [BugFix] VIX Curve - fixes reset_index erasing the name of the field. @deeleeramone (#6619)

    • Fixes the error when using: obb.derivatives.futures.curve("VX", provider="cboe")
    • [BugFix] Fix Pandas FutureWarning In derivatives.futures.curve Chart @deeleeramone (#6626)
  • [Release] Patch: openbb-yfinance-1.3.2 @deeleeramone (#6647)

  • [BugFix] Add trust_env to AIOHTTP ClientSession Initialization to Read .env for Proxy Mapping @deeleeramone (#6640)

    • Applies the setting to enable environment variable proxy mapping in aiohttp async requests.
    • [BugFix] Update aiohttp for Dependabot @deeleeramone (#6621)
  • [BugFix] Allow lowercase symbol for EconDB EconomicIndicators @deeleeramone (#6642)

    • Fixes a UX issue where the symbol - GDP - must be entered as uppercase.
    • EconDB symbols are not case-sensitive, converted to upper.
  • [BugFix] Fix Tests & Related Bugs @deeleeramone (#6657)

    • Fixes interactive tables (CLI) outputting only white window from obb.news, and similar.
    • Fixes unreliable connection/output with openbb-seeking-alpha to obb.equity.estimates.forward_sales and forward_eps.
    • Updates some unit and integration tests.

General

  • [BugFix] obb.news.world Add Validators To Providers Where Symbol Is Mandatory @deeleeramone (#6625)
  • [BugFix] Improve Warning For Invalid Defaults Key In user_settings.json @deeleeramone (#6651)
  • [BugFix] Replace Optional[bool] with bool as type in Equity Search @deeleeramone (#6633)
  • [BugFix] __fields__ is deprecated, use model_fields instead @deeleeramone (#6629)

πŸ“š OpenBB Documentation Changes

  • [BugFix] Example Notebook Syntax Updates @deeleeramone (#6639)

    • Outdated syntax in the example notebooks has been updated to reflect recent modifications.
  • [BugFix] Docs fix spelling issues @nnsW3 (#6634)

We are proud of our community contributors and staunch supporters of open-source ecosystems.
Help us promote our community by tagging @openbb_finance on X with a link to your pull request,
and join our Discord server to chat about your contribution! We want to hear about your experience!

Links πŸ¦‹

Website, Twitter, Linkedin, Instagram, Reddit, Discord

OpenBB Platform v4.3.1

09 Aug 08:29
3e24fd6
Compare
Choose a tag to compare

Thank you and welcome to our new contributors πŸ”₯

Thanks to, mmistroni, for contributing to the Finviz screener endpoint.

Summary πŸŽ‰

This release includes some bug fixes, dependency version bumps, new router paths and functionality, and a new provider extension.

What's changed πŸš€

A new version of openbb-cli resolves the issue of "nothing happening" when a command is run. The tables now engage the backend window creation directly.

🚨 OpenBB Platform Breaking Changes

  • [Feature] PyWry Optional With Charting @deeleeramone (#6590)

    • PyWry is now an optional dependency of the openbb-charting extension. This decouples window creation from the charting features and makes the installation slimmer.
      • To retain the old configuration, pip install openbb-charting["pywry"]
  • [BugFix] Bump linearmodels and arch Version @deeleeramone (#6600)

    • Versions pulled are now 6 & 7, respectively.
  • [Feature] Remove Deprecated Fields From Equity Historical @deeleeramone (#6598)

    • Previously deprecated parameters have been removed.
    • In obb.equity.price.historical:
      • Removed:
        • adjusted
        • prepost
      • All providers now use the adjustment enum to select the price adjustment factor for historical prices, and extended_hours replaces, prepost.
  • [BugFix] Fix ReferenceGenerator Unions and Choices @deeleeramone (#6599)

    • Structure of reference.json and openapi.json has changed to group all parameter "choices" by provider.
  • [Feature] OptionsChains Properties @deeleeramone (#6564)

    • Response object from obb.derivatives.options.chains is now a single model, structured as a Dict[List]. Previously was a [List[Dict]
  • OECD function parameters have changed to reflect new updated structures at the source:

  • [BugFix] Update Missed Lock Files for certifi 2024.7.4 @deeleeramone (#6583)

    • Alll extensions have been updated for certifi 2024.7.4.
  • [BugFix] Delete Dev Container @deeleeramone (#6582)

    • Removes the Dev Container from the repository.

πŸ¦‹ OpenBB Platform Enhancements

  • [Feature] Add Nonfarm Payrolls To economy.survey @deeleeramone (#6571)

    • New router path: obb.economy.survey.nonfarm_payrolls
      • Supported providers: openbb-fred
  • [Feature] Add Fred Release Tables @deeleeramone (#6595)

    • New router path: obb.economy.fred_release_table
      • Supported providers: openbb-fred
  • [Feature] Add PCE (Personal Consumption Expenditures) reports to Economy @deeleeramone (#6578)

    • New router path: obb.economy.pce
      • Supported providers: openbb-fred
  • [Feature] Add Historical Market Cap @deeleeramone (#6603)

    • New router path: obb.equity.historical_market_cap
      • Supported providers: openbb-fmp
      • Built-in view, "chart=True".
  • [Feature] Add TIPS Yields (to maturity) @deeleeramone (#6597)

    • New router path: obb.fixedincome.government.tips_yields
      • Supported providers: openbb-fred
  • [Feature] Replace Nasdaq SP500 Multiples With Direct Source @deeleeramone (#6609)

    • New provider extension - "openbb-multpl" - to replace nasdaq for obb.index.sp500_multiples.
    • Deprecated: nasdaq as provider to obb.index.sp500_multiples.
      • Reason: Data no longer updated by Nasdaq Data Link.
  • [Enhancement] Consolidate OECD Interest Rate Endpoints as a Single Function @deeleeramone (#6602)

    • Three routes have been consolidated into one:
      • New router path: obb.economy.interest_rates
      • Deprecated:
        • obb.economy.short_term_interest_rate
        • obb.economy.long_term_interest_rate
        • obb.economy.immediate_interest_rate
  • [BugFix] Fix OECD GDP Real + Add EconDB To Endpoint @deeleeramone (#6589)

    • Adds econdb as provider to:
      • obb.economy.gpd.nominal
      • obb.economy.gdp.real
  • [Feature] OptionsChains Properties @deeleeramone (#6564)

    • Adds properties and class methods to the output of obb.derivatives.options.chains.
    • results is now a single instance as a dictionary of arrays.
    • Refer to the docstring of results for a description of properties and functions.
  • [Feature] Add Finviz Screener Presets (V3 Compatible) @deeleeramone (#6601)

    • Adds finviz as a provider to: obb.equity.screener.
    • Support for legacy V3 SDK/Terminal stock screener presets.

πŸ› OpenBB Platform Bug Fixes

πŸ“š OpenBB Documentation Changes

We are proud of our community contributors and staunch supporters of open-source ecosystems.
Help us promote our community by tagging @openbb_finance on X with a link to your pull request,
and join our Discord server to chat about your contribution! We want to hear about your experience!

Links πŸ¦‹

Website, Twitter, Linkedin, Instagram, Reddit, Discord

4.3.0

10 Jul 09:42
113a84e
Compare
Choose a tag to compare

Summary πŸŽ‰

Introducing Release 4.3.0!

We've streamlined import processes, cutting load times by ~40% and revamped our code style for efficiency.

Renaming our repository to OpenBB signals a new era of accessibility and clarity. Security has been bolstered with dropped support for Python 3.8 and enhanced error handling.

Explore our expanded data access with New York Federal Reserve's Primary Dealer Statistics and Nasdaq on the Equity Screener. Experience upgraded charting capabilities including futures curves and derivatives historical charts.

This release isn't just an updateβ€”it's a leap forward in performance, security, and user experience.

πŸ¦‹ OpenBB Platform Enhancements

Import processes have been streamlined to improve load and build times, with the code style fundamentally changed to incorporate this pattern. Another feature added is the optimization of logging.

In addition, access to more data has been facilitated through the Primary Dealer Statistics by the New York Federal Reserve, further expanding the data resources. The charting capability has also been expanded with the addition of futures curve chart and derivates historical chart to improve user experience and charting coverage.

Improvements have been made to the PyPi publishing tool to support Ruff 0.5.0 and to simplify the process of doing a release. Nasdaq has been added to the Equity Screener for increased coverage.

πŸ› OpenBB Platform Bug Fixes

Key updates in the latest release: Adjusted warning display settings for clarity on large commands. Fine-tuned charting integration tests for reliability. Resolved issues with Dict-Type query parameters in Provider Interface models. Updated OECD's Unemployment data age brackets. Updated Python versions in toml files and dropped support for Python 3.8 for security enhancements. Fixed issues with local variable 'export' and streamlined operations by removing the 'website' folder. Improved error messaging with OpenBBError for FMP Econ Calendar.

πŸ“š OpenBB Documentation Changes

We are proud of our community contributors and staunch supporters of open-source ecosystems.
Help us promote our community by tagging @openbb_finance on X with a link to your pull request,
and join our Discord server to chat about your contribution! We want to hear about your experience!

Links πŸ¦‹

Website, Twitter, Linkedin, Instagram, Reddit, Discord

4.2.3

19 Jun 12:17
3e2d8b5
Compare
Choose a tag to compare

Summary πŸŽ‰

Announcing Release 4.2.3! Enjoy enhanced Fixed Income features, revamped data endpoints, and new capabilities like storing defaults and options chains. Upgrade now for enhanced functionality and expanded features! πŸš€

Thank you and welcome to our new contributors πŸ”₯

@jzhao62

πŸ¦‹ OpenBB Platform Enhancements

Enhanced Fixed Income with renamed models, EFFR & SOFR data standardization, and expanded fields. Revamped Federal Reserve and FRED data endpoints, and removed deprecated Ameribor series. New features include storing defaults, Economic Surveys router path, Intrinio Delayed Options, and Mortgage Indices endpoint.

πŸ› OpenBB Platform Bug Fixes

The new release includes three significant changes:

  1. A bug in the Econdb JSON loads context has been fixed, enhancing the functionality of the static assets by adding a context manager to json.load. The fix will address the issue documented in #6508.

  2. Base exceptions have been substituted with OpenBBError to align with new exception handlers. This step will ensure more meaningful error messages across Python, CLI, or API for users.

  3. Lastly, an issue preventing the retrieval of FY 2025 in the earnings transcript has been fixed, changing the validation to allow values less than the current year + 1. This adjustment allows mapping of FY 2025 to 2025, instead of 2024 as it did before, for example in NVDA.

We are proud of our community contributors and staunch supporters of open-source ecosystems.
Help us promote our community by tagging @openbb_finance on X with a link to your pull request,
and join our Discord server to chat about your contribution! We want to hear about your experience!

Links πŸ¦‹

Website, Twitter, Linkedin, Instagram, Reddit, Discord

v4.2.2

11 Jun 09:49
aa7bccc
Compare
Choose a tag to compare

Summary πŸŽ‰

This new release adds new endpoints to the economy menu, namely retail_prices, house_price_index, immediate_interest_rate, central_bank_holdings and share_price_index. Additionaly, yfinance is now supported by the `derivatives/options/chains/ endpoint. A new configuration was added to the user settings and it's now possible to define a priority list of providers per command, where the program falls back to the next when there is no credential for the prior.

πŸ¦‹ Enhancements

πŸ› Bug Fixes

πŸ“š Documentation

We are proud of our community contributors and staunch supporters of open-source ecosystems.
Help us promote our community by tagging @openbb_finance on X with a link to your pull request,
and join our Discord server to chat about your contribution! We want to hear about your experience!

Links πŸ¦‹

Website, Twitter, Linkedin, Instagram, Reddit, Discord

v4.2.1

23 May 09:09
aa7bccc
Compare
Choose a tag to compare

🌟 What's New in This Release

Explore the enhanced documentation layout and style for a smoother user experience of the OpenBB Platform. Tighten security with upgraded dependencies and refined error handling. Upgrade now for a safer and more streamlined experience! πŸš€

πŸ¦‹ OpenBB Platform Enhancements

Release 4.2.1 introduces new features and improvements in the system. The first addition is the "Compare Company Facts" feature, allowing users to compare line items in financial statements across different companies. The new "Forward EBITDA" route has been added to the equity estimates route. This release also sees the removal of the deprecated etf.holdings_performance endpoint. The Exception handlers have been improved to ensure more consistent error returns by the API. Lastly, the balance of payments for FRED has been added to expand the macroeconomics data collection. These changes are tested thoroughly for various conditions and parameters to ensure effective performance.

πŸ› OpenBB Platform Bug Fixes

This new release implemented software updates, including bug fixes and security improvements. The list syntax was revamped within routines, making the '-i/--input' argument initially treated as a string and skipping on split comma-separated arguments. Security updates included upgrades to the idna and requests to patched versions. The dependency on PDF and XLSX export capabilities was removed due to bugs and security vulnerabilities. Other updates improved user interaction, such as handling space-separated arguments better. Certain credentials are only updated on login, preventing unnecessary resetting of user preferences.

πŸ“š OpenBB Documentation Changes

The new release introduces considerable UI and layout changes to the OpenBB Platform documentation and a series of minor style improvements to the OpenBB Platform CLI documentation for enhanced consistency and coherence. All references now uniformly use "OpenBB Platform CLI". The modifications have been thoroughly tested on the documentation website.

We are proud of our community contributors and staunch supporters of open-source ecosystems.
Help us promote our community by tagging @openbb_finance on X with a link to your pull request,
and join our Discord server to chat about your contribution! We want to hear about your experience!

Links πŸ¦‹

Website, Twitter, Linkedin, Instagram, Reddit, Discord

v4.2.0

15 May 18:55
aa7bccc
Compare
Choose a tag to compare

🌟 What's New in This Release

πŸš€ Legacy Code Removal

Legacy Code Removal: We removed the legacy OpenBB Terminal code. Don’t worry, you can still access this legacy code! It's safely archived in our Legacy Terminal Repository and preserved in the git history for any nostalgic devs.

πŸ“œ License Transition

AGPL License Adoption: We've upgraded to the AGPL license to better align with our community's values and future goals. Learn more by checking out our insightful blog post and our detailed licensing FAQ.

πŸ”’ Security Improvements

Major Security Upgrade: With the legacy code in the rearview, we've upgraded our defenses. This major security enhancement ensures that your experience on the OpenBB Platform is safer and more secure than ever.

πŸ¦‹ OpenBB Platform Enhancements

Release 4.2.0 introduces a number of features and improvements to OpenBB Platform. Web security has been enhanced by updating frontend components and dependencies to patched versions. The OpenBB Platform CLI's testing coverage has been expanded through the addition of unit tests and the update of GitHub workflows.

The release also brings new enhancements to the 'reference.json'. Now, custom provider choices are available in the reference, which can be leveraged by clients for diverse purposes. Additional functionalities include Forward PE estimates to the equity.estimates router, update to the CLI README documentation, and removal of old code.

A notable feature is the creation of a 'repo assets directory'. The intention behind this is to define instructions and credentials in the Provider class to avoid downstream applications scraping the repo and potentially encountering randomly deleted files.

πŸ› OpenBB Platform Bug Fixes

The new release corrects a variety of bugs. Key corrections include updating GitHub workflows, replacing python-jose by PyJWT due to security concerns, fixing errors in the Econ Calendar, making paper_bgcolor transparent in the PyWry backend, and exposing error messages on request failure in AV Historical EPS. Auxiliary corrections include case-insensitive credentials, and more. Additional testing was done to ensure the proper functioning of these corrections.

πŸ“š OpenBB Documentation Changes

In this new release, several updates were made across various areas including licensing, package upgrades, and documentation changes. The license for the codebase is now AGPL, with a dedicated FAQ page for licensing added to platform documentation. The CLI Installation Pre-Requisites now include guidelines for Linux, while new pages have been created for CLI docs keeping with the familiar Terminal structure. Docusaurus, was upgraded to v3 for improved security and new features. The discontinued OpenBB Terminal was removed from the main docs page and relocated under the Legacy section. Specifics on these changes can be found in the detailed change-log.

We are proud of our community contributors and staunch supporters of open-source ecosystems.
Help us promote our community by tagging @openbb_finance on X with a link to your pull request,
and join our Discord server to chat about your contribution! We want to hear about your experience!

Links πŸ¦‹

Website, Twitter, Linkedin, Instagram, Reddit, Discord

OpenBB Terminal v3.2.5

14 Mar 16:59
741bb62
Compare
Choose a tag to compare

This will be the final release of the OpenBB Terminal.

You can read about this decision and what comes next here.

This version has fixed some of the previous bugs that were related to dependencies and has removed a chunk of deprecated dependencies.

OpenBB Terminal v3.2.4

09 Nov 22:14
Compare
Choose a tag to compare

Thank you and welcome to our new contributors πŸ”₯

@AdiSai, @AdwaitSalankar, @FarukhS52, @abhishek-amar, @bimbolimbo, @fadilparves, @joshuabuildsthings, @maxxsh, @polooner, @professssor, @ramazanguvenc and @ssahaxd

What's new πŸŽ‰

We have been pushing away at the OpenBB Platform for our V4 release. This 3.2 patch comes with some terminal bug fixes and a dependency pin for pip installation/

What's changed πŸš€

We are proud of our community contributors and staunch supporters of open-source ecosystems.
Help us promote our community by tagging @openbb_finance on Twitter with a link to your pull request,
and join our Discord server to chat about your contribution! We want to hear about your experience!

Links πŸ¦‹

Website, Twitter, Linkedin, Instagram, Reddit, Discord

OpenBB Terminal v3.2.3

04 Oct 19:10
Compare
Choose a tag to compare

Thank you for your patience! We have been working hard on the release of the openbb platform, which will be v4. You can check out the progress on our open PRs or the open branches.

Thank you and welcome to our new contributors πŸ”₯

@Light-JH, @MarkBenjamin and @ferreiratiago

What's new πŸŽ‰

  • We have fixed some issues related to the pip installation, which required pinning certain libraries.
  • General bug fixes

What's changed πŸš€

We are proud of our community contributors and staunch supporters of open-source ecosystems.
Help us promote our community by tagging @openbb_finance on Twitter with a link to your pull request,
and join our Discord server to chat about your contribution! We want to hear about your experience!

Links πŸ¦‹

Website, Twitter, Linkedin, Instagram, Reddit, Discord