Light mode Dark mode Auto light/dark mode

Lightweight Charts Python

TradingView charts, wrapped for Python.
pip install lightweight-charts
import pandas as pd
from lightweight_charts import Chart


if __name__ == '__main__':

    chart = Chart(toolbox=True)

    df = pd.read_csv('ohlcv.csv')
    chart.set(df)

    chart.show(block=True)