Hi guys,

how I can view more indicator in a single windows?
In the code below I can view only CCI but I want also display SMA.

Code:
function run()
{	
	set(PLOTNOW);
	StartDate = 20150101;
	EndDate = 2018;
	BarPeriod = 1440;
	PlotScale = 8;	
	asset("EUR/USD");
	plot("SMA",SMA(series(priceClose()),20),0,BLACK);
	plot("CCI",CCI(21),0,BLACK);
	
}



Thanks