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
= go.Candlestick(
candlestick =apple_df.index,
xopen=apple_df['Open'],
=apple_df['High'],
high=apple_df['Low'],
low=apple_df['Close']
close
)
= go.Figure(data=[candlestick])
fig
fig.update_layout(=800, height=600,
width="Apple, March - 2020",
title='AAPL Stock'
yaxis_title
)
fig.show()