louisnw01 / lightweight-charts-python

Python framework for TradingView's Lightweight Charts JavaScript library.
MIT License
1.06k stars 195 forks source link

[BUG] candles > 1000 wont show chart #448

Open armeya25 opened 4 weeks ago

armeya25 commented 4 weeks ago

Expected Behavior

should show chart with candles greater than 1000, as it was working befor

Current Behaviour

1200 candle chart dont show up

Reproducible Example

df1d = pd.read_csv('sbin1d.csv')
chart_1d = Chart(inner_width=1, inner_height=1, position='top')
chart_1d.set(df1d)
chart_1d.show(block=True)

Environment

- OS:arch linux i3wm
- Library: latest
armeya25 commented 4 weeks ago

same as https://github.com/louisnw01/lightweight-charts-python/issues/447