# NEOTICKER DATA BEGIN ScriptType=Indicator Description=Example Formula Up Tick Volume, Down Tick Volume and Delta Name=ex_for_updowndeltatickvol Language=Formula Links=1 MinBars=0 TimerInterval=100 EarlyBinding=0 MetaStyle=Normal ValueRange=Same as Source Placement=New Pane Multiplot_num_plots=3 Multiplot_color_0=38502400 Multiplot_style_0=Hist Multiplot_width_0=2 Multiplot_enabled_0=1 Multiplot_name_0=up+upside volume Multiplot_breakstyle_0=0 Multiplot_color_1=255 Multiplot_style_1=Hist Multiplot_width_1=2 Multiplot_enabled_1=1 Multiplot_name_1=down+downside volume Multiplot_breakstyle_1=0 Multiplot_color_2=50266112 Multiplot_style_2=Line Multiplot_width_2=2 Multiplot_enabled_2=1 Multiplot_name_2=delta Multiplot_breakstyle_2=0 UpdateByTick=1 TradingSystemUI=0 PrimaryLinkOnly=0 NotifyOnRemoval=0 Param_count=0 Explanation_Lines=3 Explanation0=This indicator have 3 plots, plot1 is up+upside tick volume, plot2 down+downside tick volume and plot3 is the difference between the two volume. Explanation2=This indicator require tick replay to generate historical calculation. # NEOTICKER DATA END myuv := DayTotalUpVolume; mydv := DayTotalDownVolume; myusv := DayTotalUpSideVolume; mydsv := DayTotalDownSideVolume; plot1 := if(day(data1.date(1))<>day(data1.date), myuv+myusv, (DayTotalUpVolume-myuv(1))+(DayTotalUpSideVolume-myusv(1))); plot2 := if(day(data1.date(1))<>day(data1.date), -1*(mydv+mydsv), -1*((DayTotalDownVolume-mydv(1))+(DayTotalDownSideVolume-mydsv(1)))); plot3 := plot1+plot2; 'delta