how can i plot harmonic pattern using plotly in candlestick series?

242 Views Asked by At

how can i plot harmonic pattern using plotly in candlestick series like the image below? The pattern has 5 or points to get connected fully

fig = go.Figure(data=[go.Candlestick(x=df.index,
            open=df['open'],
            high=df['high'],
            low=df['low'],
            close=df['close'])])

the code above describes the candlestick series where the pattern is to be added.how can i add harmonic pattern to it?

enter image description here

0

There are 0 best solutions below