I want to point out the highest volume on a candlestick with a vertical line. Now I only see this point inside the body of the candlestick (without seeing this point in the wick). I would include the wicks in this. Could someone help?
//@version=4
study("Name", overlay=true)
i = input(1, title="Volume Periods")
Name = barssince(volume == max(highest(volume, i), 0))
plot(close[Name], color=color.black, title="Name", style=plot.style_circles)
The length of the horizontal line should be shorter.