I have this code
def ch1(div, pares): for j in zip(div,pares): dtm=pares[j] etiqueta=div[j]
    fig = go.Figure(data=[go.Candlestick(x=dfm['Date'],
                        open=dfm['Open'],
                        high=dfm['High'],
                        low=dfm['Low'],
                        close=dfm['Price'])])
    fig.update_layout(
        title= etiqueta,
    )
    fig.show()
 
    