Hello, could it be that create_subchart in JupyterChart isn't working?
No additional pane is displayed for me.
Does anyone have any tips for me?
I have the same result in Steamlit.
chart = JupyterChart(width=800, height=400)
chart.legend(visible=True, font_size=14)
chart_rsi = chart.create_subchart(width=1, height=0.2, sync=True)
line_rsi = chart_rsi.create_line()
chart.set(resample_ohlcv_data(ohlc_df,timeframe))
line_rsi.set(rsi_df)
chart.load()

Hello, could it be that create_subchart in JupyterChart isn't working?
No additional pane is displayed for me.
Does anyone have any tips for me?
I have the same result in Steamlit.
chart = JupyterChart(width=800, height=400)
chart.legend(visible=True, font_size=14)
chart_rsi = chart.create_subchart(width=1, height=0.2, sync=True)
line_rsi = chart_rsi.create_line()
chart.set(resample_ohlcv_data(ohlc_df,timeframe))
line_rsi.set(rsi_df)
chart.load()