Display the y-axis title and the y-axis ticks data on opposite sides of a subplot

The problem with the following code is that both the title and ticks data of the y-axis of subplot one show up on the right side, I tried all methods using the combinations of side and mirror, also tried to use ticklabelposition which didn’t seem to work out. Can someone please suggest a method for the same?

fig1 = make_subplots(rows=9, cols=1, shared_xaxes=True, vertical_spacing=0.05, row_heights=[0.3,0.2,0.2,0.2,0.2,0.2,0.2,0.2,0.2],
    specs=[[{ }], [{ }], [{"secondary_y": True}], [{"secondary_y": True}], [{ }], [{ }], [{ }],[{ }],[{ }]],)

fig1.append_trace(go.Candlestick(
    x=df['date'],
    open=df['open'],
    high=df['high'],
    low=df['low'],
    close=df['close'], name='Price'
), row=1, col=1,)
fig1.update_yaxes(row=1,col=1, tickfont_size=10, side='right', tickfont_family='Droid Sans Mono', title_text=f'{coin} Price', mirror=True)