doc update

This commit is contained in:
David Brazda
2024-06-12 12:01:09 +02:00
parent 8cc4258168
commit 0282ca9fe7
2 changed files with 13 additions and 2 deletions

View File

@ -32,6 +32,17 @@ class Panel:
middle2=[],
)
pane2 = Panel(
ohlcv=(t1data.data["BAC"],),
right=[],
left=[(sma, "sma_below", short_signals, short_exits)],
middle1=[],
middle2=[],
histogram=[(order_imbalance_sma, "oisma")],
)
ch = chart([pane1, pane2], sync=True, title="neco", size="m")
```
"""
def __init__(self, ohlcv=None, right=None, left=None, middle1=None, middle2=None, histogram=None, title=None):

View File

@ -5,7 +5,7 @@ with open('README.md', 'r', encoding='utf-8') as f:
setup(
name='lightweight_charts',
version='2.0.13',
version='2.0.14',
packages=find_packages(),
python_requires='>=3.8',
install_requires=[