Comment on page
v0.3.1
On 2022.02.06
This version has been deprecated. If used with the current API version it can produce unexpected behaviour or errors.
To get the new version
🚀
pip install --upgrade shimoku-api-python
- Hotfix to allow indicators to use Color and Align independently one from the others
data_ = [
{
"description": "",
"title": "Estado",
"value": "Abierto",
"align": "center",
},
{
"description": "",
"title": "Price ($)",
"value": "455",
"color": "success",
},
{
"description": "",
"title": "Volumen",
"value": "41153"
},
{
"description": "",
"title": "Cambio €/$",
"value": "1.1946",
},
]
s.plt.indicator(
data=data_,
menu_path='test/indicator-test',
row=1, column=1,
value='value',
header='title',
footer='description',
align='align',
color='color'
)
With output

Last modified 7mo ago