Thank you
In the doc I don’t find anything that can make this possible.
Here’s the code :
fig = go.Figure()
fig.show()
for i in range(len(prices)):
fig.add_trace(go.Candlestick(
x=(prices.index.get_level_values("Time")[i],),
open=(prices["open"][i],),
high=(prices["high"][i],),
low=(prices["low"][i],),
close=(prices["close"][i],)
))
It open tab with nothing and if I add fig.showat the end of the loop, it will same as the previous code