# NEOTICKER DATA BEGIN ScriptType=Indicator Description=TP Bid Ask Trade Vol N MinMax Name=tpbidasktradevoln_minmax Language=Formula Links=1 MinBars=0 TimerInterval=100 EarlyBinding=0 MetaStyle=HighLow ValueRange=Same as Source Placement=Smart Multiplot_num_plots=2 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 UpdateByTick=1 TradingSystemUI=0 PrimaryLinkOnly=0 NotifyOnRemoval=0 Param_count=3 Param_name_0=N Param_inuse_0=1 Param_type_0=integer.gt.0 Param_default_0=1000 Param_name_1=Style Param_inuse_1=1 Param_type_1=string Param_default_1=N Tick|All Tick Param_name_2=Break Param_inuse_2=1 Param_type_2=string Param_default_2=No Break|Bar Change|Day Change Explanation_Lines=0 # NEOTICKER DATA END ' TP Bid Ask Trade Vol N MinMax ' written by Lawrence Chan ' Copyright (c) 2006 TickQuest Inc. ' All Rights Reserved ' Tick Replay required ' Links ' 1 - price series ' A demonstration of ' - using Meta Style "High Low" ' - utilize existing TP indicators to conduct complex TP analysis $mytp := tpbidasktradevoln (data1, param1, param2, param3); $barchange := $lastbnum <> barsnum; $lastbnum := barsnum; $maxtp := if ($barchange, $mytp, maxList ($maxtp, $mytp)); $mintp := if ($barchange, $mytp, minList ($mintp, $mytp)); plot1 := $maxtp; plot2 := $mintp;