I receive ohlc data from Kraken with EPOCH time in ms. Es: 1599651300
When I plot the data, I see the epoch number, but I would like to see a date (es: 10-Sep-2020 12:23).
How can I do it?
ohlc, last = k.get_ohlc_data("BCHEUR", 5)
# plot candlestick chart
candle = go.Candlestick(
x = ohlc['time'],
open = ohlc['open'],
close = ohlc['close'],
high = ohlc['high'],
low = ohlc['low'],
name = "Candlesticks")
data = [candle]
# style and display
layout = go.Layout()
fig = go.Figure(data = data, layout = layout)
plot(fig)
