Newbie question: I noticed when I use print or log.info(), the current date is printed, but not hour / minute. Is it possible to show the complete timestamp?
Newbie question: I noticed when I use print or log.info(), the current date is printed, but not hour / minute. Is it possible to show the complete timestamp?
Newbie here too.
I was wondering how to get historical bar timestamps during backtesting. Looked in API Documentation and in zipline API, but didn't find anything yet.
This Python code prints local time for somewhere other than where I currently reside...
import time
localtime = time.asctime(time.localtime(time.time()))
print "Local current time :", localtime