# NEOTICKER DATA BEGIN ScriptType=Indicator Description=TASC VWAP Channel Name=TASC_PDB Language=Formula Links=1 MinBars=0 TimerInterval=100 EarlyBinding=0 MetaStyle=Normal ValueRange=Same as Source Placement=Smart Multiplot_num_plots=3 Multiplot_color_0=255 Multiplot_style_0=Line Multiplot_width_0=1 Multiplot_enabled_0=1 Multiplot_breakstyle_0=0 Multiplot_color_1=255 Multiplot_style_1=Line Multiplot_width_1=1 Multiplot_enabled_1=1 Multiplot_breakstyle_1=0 Multiplot_color_2=255 Multiplot_style_2=Line Multiplot_width_2=1 Multiplot_enabled_2=1 Multiplot_breakstyle_2=0 UpdateByTick=0 FloatMarker=1 DepthData=0 TradingSystemUI=0 PrimaryLinkOnly=0 NotifyOnRemoval=0 Param_count=2 Param_name_0=upper band % Param_inuse_0=1 Param_type_0=real Param_default_0=1 Param_name_1=lower band % Param_inuse_1=1 Param_type_1=real Param_default_1=1 Explanation_Lines=0 # NEOTICKER DATA END M := VWAP(0,data1,"(h+l)/2","1980/1/1 0:0:0","NO"); $Q1 := choose (param1 < 1, 1, param1 > 50, 50, param1); 'upper band $Q2 := choose (param2 < 1, 1, param2 > 50, 50, param2); 'lower band plot1 := M; plot2 := M*(1+$Q1/100); plot3 := M*(1-$Q2/100);