// Downloaded From https://www.WiseStockTrader.com
inputy1=Param("input1",3,3,100,1);
inputy2=Param("input2",8,8,100,1);

fastma1 = ema(close,inputy1);
fastma2 = ema(close,inputy2);

aktrend = (fastma1-fastma2)*1.001;
Plot(aktrend, "aktrend", IIf(aktrend > 0,colorbrightgreen,colorred),styleline | styleThick);
plot (0,"",colorwhite);