# NEOTICKER DATA BEGIN ScriptType=Indicator Description=Example Formula 201-18-2 Name=ex_for_b2011802 Language=Formula Links=1 MinBars=0 TimerInterval=100 EarlyBinding=0 MetaStyle=Normal ValueRange=Same as Source Placement=Smart Multiplot_num_plots=2 Multiplot_color_0=33587200 Multiplot_style_0=Dot Multiplot_width_0=1 Multiplot_enabled_0=1 Multiplot_name_0=Morning High Multiplot_breakstyle_0=0 Multiplot_color_1=255 Multiplot_style_1=Dot Multiplot_width_1=1 Multiplot_enabled_1=1 Multiplot_name_1=Morning Low Multiplot_breakstyle_1=0 UpdateByTick=0 FloatMarker=1 DepthData=0 TradingSystemUI=0 PrimaryLinkOnly=0 NotifyOnRemoval=0 Param_count=0 Explanation_Lines=1 Explanation0=Formula indicator example that return moring range high/low. # NEOTICKER DATA END $morning_high := if(data1.date(0)<>data1.date(1), high, $morning_high); $morning_low := if(data1.date(0)<>data1.date(1), low, $morning_low); $IsMorning := (data1.time(0) >= maketime(9,30,0)) and (data1.time(0) < maketime(10,0,0)); $morning_high := if(($IsMorning > 0) and (h > $morning_high), high, $morning_high); $morning_low := if(($IsMorning > 0) and (l < $morning_low), low, $morning_low); plot1 := $morning_high; plot2 := $morning_low;