fjafferi

Results 4 comments of fjafferi

thank you. That seems to work. Now i ran into another problem, i am trying to create a variable to load values from the databas. However, it doesn't seems to...

Any update on this? it seems the problem still exists.

[AAPL_1H.zip](https://github.com/plotly/plotly.py/files/6651284/AAPL_1H.zip) Here is a pickle file, I just tried with the code above and it seems okay. However, i was seeing the described behavior above yesterday. Let me reproduce and...

`import pandas as pd import plotly.graph_objects as go df = pd.read_pickle('AAPL_1H.pkl') fig = go.Figure(data=[go.Candlestick(x=df.index, open=df['open'], high=df['high'], low=df['low'], close=df['close'])]) fig.update_xaxes( rangebreaks=[ dict(bounds=[15, 9], pattern="hour"), # dict(bounds=["sat", "mon"]), _**dict(values=["2021-06-03"])**_ ] ) fig.show()`...