I can use this offline?
import plotly.graph_objects as go
import pandas as pd
from datetime import datetime
df = pd.read_csv("./prices.csv")
fig = go.Figure(
data=[
go.Candlestick(
x=df.index,
open=df["open"],
high=df["high"],
low=df["low"],
close=df["close"],
)
]
)
fig.update_layout(xaxis_rangeslider_visible=False)
fig.show()

Good Afternoon,
I am looking for a trading platform, which will allow me to download data and access it whilst I am offline.
Would anyone be able to make a good suggestion?
Is Market Replay still free? I just need to daily candles.
Thanks and Have a great day,
IWAI