Actually i have assigned trace1 to left side y-axis and trace1_I to right side y-axis and i want to add trace1_II to right side y-axis , Below i have mentioned the code which i have written, Could you please help me to add trace1_II to right side y-axis?

trace1 = go.Scatter(
mode=‘lines’,
x=line_g_data[‘zxcddf’],
y=line_g_data[‘aaaaaa’],
showlegend=False,
line=dict(width=1, color=’#00FF00’),
name=“asdfghj”,
yaxis=‘y1’
)

trace1_I = go.Scatter(
    mode='lines',
    x=line_g_data['aaaaaa'],
    y=line_g_data['xxxxxxxxxx'],
    showlegend=False,
    line=dict(width=1, color='#FF0000'),
    name="xxxxxxxxxx",
    yaxis='y4'

)
trace1_II = go.Scatter(
    mode='lines',
    x=line_g_data['aaaaaa'],
    y=line_g_data['XXXXXXXXXX'],
    showlegend=False,
    line=dict(width=1, color='#0000FF'),
    name="XXXXXXXXXX",
    yaxis='y5'
)

fig.append_trace(trace1, 1, 1)
fig.append_trace(trace1_I, 1, 1)
# fig.append_trace(trace1_II,1,1)

fig.update_xaxes(row=1, col=1, showgrid=True, gridcolor='#DCDCDC', tickfont=dict(size=10), zeroline=False,
                 showline=True, linewidth=2, linecolor='#e6e6e6')
fig.update_yaxes(row=1, col=1, showgrid=True, showline=True, linewidth=1, gridwidth=1, ticks="outside",
                 tickfont=dict(size=10), range=[0, 10], tick0=0, dtick=2, zeroline=False,
                 gridcolor='#DCDCDC', title="",
                 title_font=dict(size=10))

with fig.batch_update():
    fig.data[1].update(yaxis='y4')

    fig['layout'].update(height=900, width=1015, paper_bgcolor='White', plot_bgcolor='White',
                         uniformtext_minsize=10,
                         uniformtext_mode='hide',
                         margin={'t': 50, 'l': 0, 'b': 0, 'r': 10},
                         yaxis4=dict(overlaying='y1',
                                     side='right',
                                     anchor='x1',
                                     range=[-1, 1],
                                     tick0=-1,
                                     dtick=0.25,
                                     showgrid=False,
                                     title=' <br> / '),
                         yaxis5=dict(overlaying='y1',
                                     side='right'),
                         legend=dict(orientation="h", yanchor="bottom", y=1, xanchor="right", x=1,
                                     font=dict(family="CorpoS", size=10, color='#000000')),
                         )