1 dash document

pip install dash

https://dash.plot.ly/

Dash components:

https://dash.plot.ly/dash-core-components

https://dash.plot.ly/cytoscape

https://dash.plot.ly/dash-daq

https://pypi.org/project/dash-bootstrap-components/

https://github.com/StratoDem/sd-material-ui

community thread:

https://community.plot.ly/t/show-and-tell-community-thread/7554

2 live update plot

3 dash_slider_demo

4 candlestick

candlestick = go.Candlestick(
                            x=apple_df.index,
                            open=apple_df['Open'],
                            high=apple_df['High'],
                            low=apple_df['Low'],
                            close=apple_df['Close']
                            )

fig = go.Figure(data=[candlestick])

fig.update_layout(
    width=800, height=600,
    title="Apple, March - 2020",
    yaxis_title='AAPL Stock'
)

fig.show()
Home Page