Indicators with Header
This chart uses the Bento box to join an html header component with a group of indicators.
The Method To Use
The method is s.plt.indicators_with_header()
It must contain the following input variables:
order: int
# List of groups of indicators, each one of them will be used as the input
# of an indicators function call
indicators_groups: List[Union[pd.DataFrame, List[Dict]]]
# Header configuration
title: strAccepts the following input variables as optional:
# The parameters that will be passed to the indicators calls
indicators_parameters: Optional[dict] = None
subtitle: str = ''
background_color: str = 'var(--color-primary)'
text_color: str = 'var(--background-paper)'
icon_url: str = 'https://uploads-ssl.webflow.com/619f9fe98661d321dc3beec7/63e3615716d4435d29e0b82c_Acurracy.svg'
cols_size: int = 12Examples
With this example it can be seen how to use the function with parameters for the indicator

Last updated
Was this helpful?