Hello Quantopian,
At present log entries in minutley backtests are timestamped with just the date. It would be really helpful if they could be timestamped with HH:MM as well. Here is why I ask:
for sid in context.stocks:
if data[sid].datetime <> get_datetime():
print get_datetime()
print "Caution: Forward fill of " + str(sid) + "from " \
+ str(data[sid].datetime)
gives me:
2008-01-23 PRINT 2008-01-23 14:32:00+00:00
2008-01-23 PRINT Caution: Forward fill of Security(2 [AA])from 2008-01-23 14:31:00+00:00
2008-05-09 PRINT 2008-05-09 14:27:00+00:00
2008-05-09 PRINT Caution: Forward fill of Security(2 [AA])from 2008-05-09 14:26:00+00:00
I wouldn't need to print get_datetime() if HH:MM was in the timestamp.
P.