pip install dash
Dash components:
https://dash.plot.ly/dash-core-components
https://dash.plot.ly/cytoscape
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
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()