# NEOTICKER DATA BEGIN ScriptType=Indicator Description=TASC Adjusted Benchmark 2 Name=tasc_adjbenchmark2 Language=Formula Links=1 MinBars=0 TimerInterval=100 MetaStyle=Normal ValueRange=Same as Source Placement=New Pane Multiplot_num_plots=2 Multiplot_color_0=50312193 Multiplot_style_0=Line Multiplot_width_0=2 Multiplot_enabled_0=1 Multiplot_name_0=overbought Multiplot_breakstyle_0=0 Multiplot_color_1=50312193 Multiplot_style_1=Line Multiplot_width_1=2 Multiplot_enabled_1=1 Multiplot_name_1=oversold Multiplot_breakstyle_1=0 UpdateByTick=0 TradingSystemUI=0 PrimaryLinkOnly=0 NotifyOnRemoval=0 Param_count=3 Param_name_0=RSI period Param_inuse_0=1 Param_type_0=integer.gt.1 Param_default_0=14 Param_name_1=SMA period Param_inuse_1=1 Param_type_1=integer.gt.1 Param_default_1=14 Param_name_2=c Param_inuse_2=1 Param_type_2=real Param_default_2=2 Explanation_Lines=0 # NEOTICKER DATA END $c := param3; $n := param1; $m := param2; myRSI := rsindex(data1, $n); plot1 := 50+$c*average(abs(myRSI-average(myRSI,$n)),$m); plot2 := 50-$c*average(abs(myRSI-average(myRSI,$n)),$m);