I have a large dataset that includes my strategy back-test run data. The dataset columns include candle date, close price and many strategy related data.
I’ve built a Mathplotlib visualization for my backtest run data. While my visualization works, working with Mathplotlib charts is tedious. I like to have something like Plotly.py’s Range Sliders shown here https://plotly.com/python/range-slider/
Before I spend time and migrate my visualization to another platform, I wanted to ask what are the efficient and productive options to visualize large timeseries market data? So far I’ve come up with the following options, but I am hoping to know if I am missing any common tool or library:
- Tradingview’s Lightweight Charts - Open Source: Not sure if it can handle large datases
- Plotly.py: Not sure if it can handle large datasest
- Power BI
Am I missing any better tool, library or option?

