//For TRI'ers with a stinky trading view account.
//Some reccomended moving averages including the institutional moving averages.
//Much love to Brian for changing our lives.
study(title="Moving Averages: EMA50, EMA100, EMA200", shorttitle="EMA50, EMA100, EMA200", overlay=true)
src = close
ema50 = ema(src, 50)
ema100 = ema(src, 100)
ema200 = ema(src, 200)
plot( ema50, color=red, style=line, title="EMA50", linewidth=1)
plot( ema100, color=black, style=line, title="EMA100", linewidth=1)
plot( ema200, color=green, style=line, title="EMA200", linewidth=1)