# NEOTICKER DATA BEGIN ScriptType=Indicator Description=Heikin-Ashi Data Series Name=ha_series Language=Formula Links=1 MinBars=0 MetaStyle=Candle ValueRange=Same as Source Placement=New Pane Multiplot_num_plots=4 Multiplot_color_0=255 Multiplot_style_0=Line Multiplot_width_0=1 Multiplot_enabled_0=1 Multiplot_color_1=255 Multiplot_style_1=Line Multiplot_width_1=1 Multiplot_enabled_1=1 Multiplot_color_2=255 Multiplot_style_2=Line Multiplot_width_2=1 Multiplot_enabled_2=1 Multiplot_color_3=255 Multiplot_style_3=Line Multiplot_width_3=1 Multiplot_enabled_3=1 UpdateByTick=0 TradingSystemUI=0 Param_count=0 Explanation_Lines=1 Explanation0=This indicator create a pusdo data series using the method discussed in the TASC article "Using The Heikin-Ashi Technique". # NEOTICKER DATA END haClose := (O+H+L+C)/4; haOpen := (haOpen(1)+haClose(1))/2; myH1 := if(H > haOpen, H, HaOpen); haHigh := if(myH1 > haClose, myH1, haClose); myL1 := if(L < haOpen, L, HaOpen); haLow := if(myL1 < haClose, myL1, haClose); plot1 := haOpen; plot2 := haHigh; plot3 := haLow; plot4 := haClose;