study(title="Intraday - Exponential Moving Average 3 CrossOver", shorttitle="EMA3CO", overlay=true) length1 = input(5, minval=1) src1 = input(close, title="Source") e1 = ema(src1, length1) plot(e1, color=lime,linewidth=1) length2 = input(15, minval=1) src2 = input(close, title="Source") e2 = ema(src2, length2) plot(e2, color=green,linewidth=2) length3 =...