Anyone has solution on how to make make the histogram graph a subplot to the ohlc graph, with same y-axis, but different x-axises? Thanks a lot.
volume_profile = px.histogram(df, x='Volume', y='Close', nbins=25, orientation='h')
ohlc = go.Figure(data=go.Ohlc(x=df['Time'],
open=df['Open'],
high=df['High'],
low=df['Low'],
close=df['Close']))
volume_profile.show()
ohlc.show()

