Example of Stoploss Black Line on Chart
My question today relates to plotting a simple black line, which will act as a visual aid for when to manually take a stop loss. My strategy utilizes stop losses, it does so by also using plot shape to plot a red or green arrow signaling entries. The stop loss comes into play when an arrow is plotted... it then takes the candle that it is plotted on and draws a horizontal line connecting to the candle body low (when going long) and candle body high (when going short). Once the strategy plots the opposite arrow it will drawn an angled line up to the designated candle low/high.
If this extra bit of info is necessary, lets say the signal arrow is plotted on the chart when
bullPoints = 2 // bullPoints receives 2 when conditions are met ideally signaling long
bullPlot = if bullPoints == 2
true
else
false
plotshape(series=bullPlot, shape=style.triangleup, location=location.belowbar, color=color.green)
How can I plot this basic concept of a stop loss?