Tags


Add the script below in Pine editor:

//@version=3
study(title=”Mangekyō Sharingan”, overlay=true)
short = sma(close, 50)
long = sma(close, 200)
plot(short, color = red)
plot(long, color = green)
plot(cross(short, long) ? short : na, style = cross, linewidth = 1, color = white)