I want to draw a line in the middle (based on the calculation) of each candlestick.
study(title="Middle-Line", shorttitle="ML", overlay=true)
mLine = hlc3
plot(mLine, color=red, title="ML", style=line)
The line will be drawn based on the hlc3 formula calculation.