// Downloaded From https://www.WiseStockTrader.com // Author Somanath Das @ somanath.das@gmail.com // dated 22/04/2016 Mob. No. : 9337799507 _SECTION_BEGIN( "Small Triggers" ); p1 = Param( "TL 1 Periods", 5, 5, 50, 1 ); p2 = Param( "TL 2 Periods", 2, 3, 25, 1 ); TL1 = LinearReg( C, p1 ); TL2 = EMA( TL1, p2 ); Col1 = IIf( TL1 > TL2, ParamColor( "TL Up Colour1", colorblue ), ParamColor( "TL Dn Colour1", colorred ) ); TL3=RSIa(TL2,2); TL4=EMA(StochK(5,2),2); Plot(90,"",colorRed,styleLine); Plot(70,"",colorRed,styleLine); Plot(50,"",Colorwhite,styleLine); Plot(30,"",colorGreen,styleLine); Plot(10,"",colorGreen,styleLine); Plot( TL3, "EMA(5)", Col1, styleLine|styleline | styleNoLabel ); // | styleThick Plot( TL4, "EMA(5)", Coloryellow, styleLine|styleline | styleNoLabel ); // | styleThick _SECTION_END();