// Downloaded From https://www.WiseStockTrader.com Title="sameers nifty options system arrowup:buy call,arrowdown:sell call,triangledown:buyput,triangle up:exit put"; SetChartOptions(0,0,chartGrid30|chartGrid70); periods = Param( "Periods", 15, 1, 200, 1 ); Colordyn=IIf(TEMA(RSI( periods),5)>MA(TEMA(RSI( periods),5),20),colorGreen,colorRed); Plot( TEMA(RSI( periods),5), "Sameers nifty option system Arrowup:Sell put Buy call arrow down:sellput AND Buy call", Colordyn,stylenotitle); _SECTION_END(); _SECTION_BEGIN("Bollinger Bands"); P = ParamField("Price field",-1); Periods = Param("Periods", 15, 2, 300, 1 ); Width = Param("Width", 2, 0, 10, 0.05 ); Color = ParamColor("Color", colorCycle ); Style = ParamStyle("Style"); Plot( BBandTop( P, Periods, Width ), "BBTop" + _PARAM_VALUES(), Color, styleNoTitle ); Plot( BBandBot( P, Periods, Width ), "BBBot" + _PARAM_VALUES(), Color, styleNoTitle ); _SECTION_END(); aa=TEMA(RSI(14),5); bb=MA(aa,20); bbt=BBandTop(aa,20,2.5); bbt=BBandBot(aa,20,2.5); Buy=Cross(aa,bb) AND C>MA(C,50); Sell= Cross(bb,aa); Short=Cross(bb,aa) AND C