I am using Automatic Analysis to scan market for moving average crossovers and want to display an additional column displaying Highest Value of Close in past 50 bars. The code I am trying is given below. But I am not getting the additional column "High". I am trying in Ami 5.60.2 and used both Old and New Auto Analysis, but not getting the additional column in any of it.
Buy = Cross( MA(Close, 15 ) , MA(Close, 75 ));
Sell = Cross( MA(Close, 75 ) , MA(Close, 15 ));
AddColumn(HHV(Close,50), "High");
Can't figure out what I am doing wrong...
Buy = Cross( MA(Close, 15 ) , MA(Close, 75 ));
Sell = Cross( MA(Close, 75 ) , MA(Close, 15 ));
AddColumn(HHV(Close,50), "High");
Can't figure out what I am doing wrong...