Code: Select all
//@version=5
indicator("Dotted EMA5")
inputColor = input.color(title="My Colored Line", defval = color.blue)
whatImPlotting = ta.ema(close, 5)
plot(whatImPlotting, style=plot.style_circles, color=inputColor)
Code: Select all
//@version=5
indicator("Dotted EMA5")
inputColor = input.color(title="My Colored Line", defval = color.blue)
whatImPlotting = ta.ema(close, 5)
plot(whatImPlotting, style=plot.style_circles, color=inputColor)