Charting extension for OpenBB
Project description
OpenBB Charting extension
This extension provides a charting library for OpenBB Platform.
The library includes:
- a charting infrastructure based on Plotly
- a set of charting components
- prebuilt charts for a set of commands that are built-in OpenBB extensions
Installation
To install the extension, run the following command in this folder:
pip install openbb-charting
PyWry dependency on Linux
The PyWry dependency handles display of interactive charts and tables in a separate window. It is installed automatically with the OpenBB Charting extension.
When using Linux distributions, the PyWry dependency requires certain dependencies to be installed first.
-
Debian-based / Ubuntu / Mint:
sudo apt install libwebkit2gtk-4.0-dev
-
Arch Linux / Manjaro:
sudo pacman -S webkit2gtk
-
Fedora:
sudo dnf install gtk3-devel webkit2gtk3-devel
Usage
To use the extension, run any of the OpenBB Platform endpoints with the chart
argument set to True
.
Here's an example how it would look like in a python interface:
from openbb import obb
equity_data = obb.equity.price.historical(symbol="TSLA", chart=True)
This results in a OBBject
object containing a chart
attribute, which contains Plotly JSON data.
In order to display the chart, you need to call the show()
method:
equity_data.show()
Note: The
show()
method currently works either in a Jupyter Notebook or in a standalone python script with a PyWry based backend properly initialized.
Add a visualization to an existing Platform command
One should first ensure that the already implemented endpoint is available in the charting router.
To do so, you can run:
python openbb_platform/extensions/charting/openbb_charting/builder.py
- which will read all the available endpoints and add them to the charting router.
Afterwards, you'll need to add the visualization to the charting router. The convention to match the endpoint with the respective charting function is the following:
/equity/price/historical
->equity_price_historical
/technical/ema
->technical_ema
When you spot the charting function on the charting router file, you can add the visualization to it.
The implementation should leverage the already existing classes and methods to do so, namely:
OpenBBFigure
OpenBBFigureTable
PlotlyTA
Note that the return of each charting function should respect the already defined return types: Tuple[OpenBBFigure, Dict[str, Any]]
.
The returned tuple contains a OpenBBFigure
that is an interactive plotly figure which can be used in a Python interpreter, and a Dict[str, Any]
that contains the raw data leveraged by the API.
After you're done implementing the charting function, you can use either the Python interface or the API to get the chart. To do so, you'll only need to set the already available chart
argument to True
.
Using the to_chart
OBBject method
The OBBject
is the custom OpenBB object that is returned by the Platform commands.
It implements a set of to_<something>
functions that enable the user to easily transform the data into a different format.
The to_chart
function should be taken as an advanced feature, as it requires the user to have a good understanding of the charting extension and the OpenBBFigure
class.
The user can use any number of **kwargs
that will be passed to the PlotlyTA
class in order to build custom visualizations with custom indicators and similar.
Refer to the to_chart
implementation for further details.
Note that, this method will only work to some limited extent with data that is not standardized. Also, it is currently designed only to handle time series data.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for openbb_charting-1.0.0rc0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 030df6648ca6293ba9a7911c54e45bd1dacae2679b0120631110b60d42fa8378 |
|
MD5 | b386ed02cfdda390842e0a31c348a29f |
|
BLAKE2b-256 | 77dac42eaf58f16df3c85965b6632081d060cef743b5f67918146c2b90ee3660 |