3 Emas

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

//@version=5

indicator('EMAs', overlay=true)
plot(ta.ema(close, 200), color=color.new(color.red, 0))
plot(ta.ema(close, 55), color=color.new(color.yellow, 0))
plot(ta.ema(close, 10), color=color.new(color.green, 0))

You might also like