Is it possible to plot a shape or arrow on an indicator panel where Study(overlay=false)?
If I have a study declared like this
//@version=4
study("My Custom Indicator", overlay=false)
// ...
plotarrow(true, title="EMA Cross", colorup=color.lime, colordown=color.red, transp=50)
It results in this
What I want to do is have the arrows at a specific Y-value where the indicator is drawing, but its using the main price chart price for its Y-value
