Wolf of Wall Street with Regolo + OpenBB trading Agent ๐Ÿ’ธ

Use your own Regolo Trading Agent inside OpenBB Workspace as a custom Copilot and become a real finance shark ๐Ÿฆˆ.
With this setup, you can guide your decisions with advanced analytics and AI-driven insights. Powered by Regolo.ai models, your agent doesnโ€™t just provide numbers, it adapts to your style, learns from the markets, and helps you spot opportunities like a real consultant.
This means faster decision-making, smarter portfolio management, and a professional edge in every trade.

What is OpenBB? ๐Ÿ“Š

OpenBB is an open-source platform for financial data, research, and analytics. It brings together data from multiple providers into a single environment, making it easier to explore markets, build strategies, and run analysis.

The OpenBB Workspace adds a modern user interface and AI copilots that let you interact with data conversationally. Instead of writing queries or code, you can ask questions directly, visualize results instantly, and even connect your own custom agents like Regolo.ai to supercharge research and trading workflows.

Prerequisites โš™๏ธ

  • Python 3.12+ and Git installed
  • A Regolo.ai API key
  • Code IDE

Quick Start Guide

1) Get a Regolo.ai API key ๐Ÿ”‘

Generate an API key from Regolo.ai and keep it handy.

2) Go to OpenBB ๐ŸŒ

Open openbb and sign in (or create an account).

3) Click Start now to open Workspace โ–ถ๏ธ

Enter the Workspace from the homepage and keep it open.

4) Open your favorite IDE ๐Ÿ’ป

Launch your code IDE or terminal

5) Create a project folder and a virtualenv ๐Ÿงฑ

mkdir regolo-openbb && cd regolo-openbb
python -m venv .venv
# macOS/Linux
source .venv/bin/activate
# Windows (PowerShell)
# .\.venv\Scripts\Activate.ps1Code language: Bash (bash)

6) Clone the Regolo Agents for OpenBB repo (branch regolo-agents-01) ๐Ÿ“ฅ

git clone https://github.com/regolo-ai/regolo-agents-for-openbb/tree/regolo-agents-01
cd regolo-agents-for-openbbCode language: PHP (php)

7) Create a .env file with your Regolo config ๐Ÿงฉ

REGOLO_BASE_URL=https://api.regolo.ai/v1
REGOLO_API_KEY=<yourkey>Code language: JavaScript (javascript)

8) Install dependencies ๐Ÿ”ง

pip install poetry
poetry install --no-root

At this point you can customize your agent (prompts, tools, routing) inside the repo structure as you wish. โœจ

9) Run the agent locally on port 7777 โ–ถ๏ธ

From the repo root:

poetry run uvicorn regolo-agent.regolo:app --port 7777 --reloadCode language: CSS (css)

10) Adding Copilot

In the right chat panel: OpenBB Copilot (default) โ†’ Add Copilot.

#paste your endpoint
http://127.0.0.1:7777
Code language: PHP (php)

Chat in Workspace, your Copilot now talks to Regolo.ai through your local agent. ๐ŸŽ†