In the options I would like you to add: 1. Possibility to change lenght and num ATRs. 2.Reverse position opening 3. Support back testing The following is a script reference on tradingview backtest The signal needs to be the same as the one on the TRADINGVIEW can it be completed //@version=5 strategy("Volty Expan Close Strategy", overlay=true) length = input(5) numATRs = input(0.75) atrs = ta.sma(ta.tr, length)*numATRs if (not na(close[length])) strategy.entry("VltClsLE", strategy.long, stop=close+atrs, comment = "VltClsLE") strategy.entry("VltClsSE", strategy.short, stop=close-atrs, comment = "VltClsSE") //plot(strategy.equity, title="equity", color=color.red, linewidth=2, style=plot.style_areabr)