After 05.1001, you have to revise your ATS signals to include a time stamp
From your eSignal script, add a time stamp to the end of the signal message
Example for eSignal:
in the function main() section, add -
nYear = getValue("year");
nMonth = getValue ("month");
nDay = getValue("day");
nHour = getValue("hour");
nMinute = getValue("minute");
timestamp = (nYear*1000000000)+(nMonth*10000000)+(nDay*100000)+(nHour*1000)+(nMinute*10);
in the signals section, add the timestamp to the end of the message
f.writeln("cxlplace,BUY,1,LMT," + close() + ",0," + timestamp);