# NEOTICKER DATA BEGIN ScriptType=Indicator Description=Advance Issues Momentum System Name=AIMSYS Language=Formula Links=2 MinBars=0 MetaStyle=Normal ValueRange=Same as Source Placement=Smart Multiplot_num_plots=1 Multiplot_color_0=255 Multiplot_style_0=Line Multiplot_width_0=1 Multiplot_enabled_0=1 UpdateByTick=0 TradingSystemUI=1 Param_count=0 Explanation_Lines=2 Explanation0=First link is the price series this system trade. Second link is the signal series generated from a selected basket of insturtments. # NEOTICKER DATA END plot1 := currentequity; buysignal := data2 (3) > data2 (2) and data2 (2) > data2 (1) and data2 (1) < data2 and data2 - data2 (1) < 5 and data2 < 20; sellsignal := data2 (3) < data2 (2) and data2 (2) < data2 (1) and data2 (1) > data2 and data2 (1) - data2 < 5 and data2 > 10; longatmarket (buysignal, 1); shortatmarket (sellsignal, 1);