# NEOTICKER DATA BEGIN ScriptType=Indicator Description=My Special MACD Name=MySpecialMACD Language=Formula Links=1 MinBars=0 TimerInterval=100 MetaStyle=Normal ValueRange=Same as Source Placement=Smart Multiplot_num_plots=4 Multiplot_color_0=255 Multiplot_style_0=Line Multiplot_width_0=1 Multiplot_enabled_0=1 Multiplot_name_0=MACD Multiplot_breakstyle_0=0 Multiplot_color_1=50266112 Multiplot_style_1=Line Multiplot_width_1=1 Multiplot_enabled_1=1 Multiplot_name_1=Signal Multiplot_breakstyle_1=0 Multiplot_color_2=33554432 Multiplot_style_2=Hist Multiplot_width_2=1 Multiplot_enabled_2=1 Multiplot_name_2=Diff Multiplot_breakstyle_2=0 Multiplot_color_3=33619967 Multiplot_style_3=Line Multiplot_width_3=1 Multiplot_enabled_3=1 Multiplot_name_3=Zero Multiplot_breakstyle_3=0 UpdateByTick=0 TradingSystemUI=0 PrimaryLinkOnly=0 NotifyOnRemoval=0 Param_count=3 Param_name_0=Fast Param_inuse_0=1 Param_type_0=integer.gt.0 Param_default_0=10 Param_name_1=Slow Param_inuse_1=1 Param_type_1=integer.gt.0 Param_default_1=50 Param_name_2=Smooth Param_inuse_2=1 Param_type_2=integer.gt.0 Param_default_2=5 Explanation_Lines=0 # NEOTICKER DATA END mymacd := MySpecialAverage2 (data1, param1) - MySpecialAverage2 (data1, param2); plot1 := mymacd; plot2 := average (mymacd, param3); plot3 := plot1 - plot2; plot4 := 0;