ATR based Pivots

Hi
I would like to see if someone can help me to code this indicator from tradingview to Traddovate

Thank you

//@version=3
study(“atr based pivots mcbw”, overlay =true, shorttitle = “ATR pivots mcbw”)

// user settings
smoothper = input(14, title = “ATR period”)
res = input(“D”,type = resolution, title = “Opening period”)
multiple_1 = input(0.25, title = “ATR multiple 1”)
multiple_2 = input(0.50, title = “ATR multiple 2”)
multiple_3 = input(1.0, title = “ATR multiple 3”)

// script
dailyopen = security(tickerid, res, open, lookahead=barmerge.lookahead_on) // this is open
smoothatr = security(tickerid, res, ema(tr(true), smoothper),lookahead=barmerge.lookahead_on)

// plotting
plot(dailyopen, color=red, linewidth = 3, transp = 0, style = cross, title = “Period open”)
plot(dailyopen + multiple_1smoothatr, color=lime, linewidth = 3, transp = 0, style = cross, title = “Open + ATR multiple 1”)
plot(dailyopen + multiple_2
smoothatr, color=blue, linewidth = 3, transp = 0, style = cross, title = “Open + ATR multiple 2”)
plot(dailyopen + multiple_3smoothatr, color=purple, linewidth = 3, transp = 0, style = cross, title = “Open + ATR multiple 3”)
plot(dailyopen - multiple_1
smoothatr, color=lime, linewidth = 3, transp = 0, style = cross, title = “Open - ATR multiple 1”)
plot(dailyopen - multiple_2smoothatr, color=blue, linewidth = 3, transp = 0, style = cross, title = “Open - ATR multiple 2”)
plot(dailyopen - multiple_3
smoothatr, color=purple, linewidth = 3, transp = 0, style = cross, title = “Open - ATR multiple 3”)

Mr Tiki
can you help me in this one please
Thanks