# NEOTICKER DATA BEGIN ScriptType=Indicator Description=Keltner Channels Ex Custom Name=keltnerex_custom Language=Formula Links=1 MinBars=0 TimerInterval=100 MetaStyle=Normal ValueRange=Same as Source Placement=Smart Multiplot_num_plots=5 Multiplot_color_0=255 Multiplot_style_0=Line Multiplot_width_0=1 Multiplot_enabled_0=1 Multiplot_name_0=Center Multiplot_breakstyle_0=0 Multiplot_color_1=33619712 Multiplot_style_1=Line Multiplot_width_1=1 Multiplot_enabled_1=1 Multiplot_name_1=Outer low Multiplot_breakstyle_1=0 Multiplot_color_2=50266112 Multiplot_style_2=Line Multiplot_width_2=1 Multiplot_enabled_2=1 Multiplot_name_2=Inner low Multiplot_breakstyle_2=0 Multiplot_color_3=50266112 Multiplot_style_3=Line Multiplot_width_3=1 Multiplot_enabled_3=1 Multiplot_name_3=Inner high Multiplot_breakstyle_3=0 Multiplot_color_4=33619712 Multiplot_style_4=Line Multiplot_width_4=1 Multiplot_enabled_4=1 Multiplot_name_4=Outer high Multiplot_breakstyle_4=0 UpdateByTick=0 TradingSystemUI=0 PrimaryLinkOnly=0 NotifyOnRemoval=0 Param_count=6 Param_name_0=series Param_inuse_0=1 Param_type_0=formula Param_default_0=(h+l+c)/3 Param_name_1=Moving Average type Param_inuse_1=1 Param_type_1=string Param_default_1=QC Exponential|Simple|Exponential|Triangle|Weighted|Volume|Adaptive Param_name_2=period Param_inuse_2=1 Param_type_2=integer.gt.1 Param_default_2=20 Param_name_3=Range Average type Param_inuse_3=1 Param_type_3=string Param_default_3=QC Exponential|Simple|Exponential|Triangle|Weighted|Volume|Adaptive Param_name_4=Inner offset Param_inuse_4=1 Param_type_4=integer.gt.0 Param_default_4=2 Param_name_5=Outer offset Param_inuse_5=1 Param_type_5=integer.gt.0 Param_default_5=4 Explanation_Lines=0 # NEOTICKER DATA END myseries := fml(data1, param1); $ma := mov(myseries, param2, param3); $sd := mov(h-l, param4, param3); $sd1 := $sd*param6; $sd2 := $sd*param5; plot1 := $ma; plot2 := $ma-$sd1; plot3 := $ma-$sd2; plot4 := $ma+$sd2; plot5 := $ma+$sd1; $ok := $ma > 0; success1 := $ok; success2 := $ok; success3 := $ok; success4 := $ok; success5 := $ok;