Can I somehow find out when a particular symbol was first traded/entered? E.g.,
def get_orders():
r = requests.get(ORDERS_URL, headers=HEADERS)
return json.loads(r.content)
positions = get_orders()
Great, now I have a list of positions…I want to go through that list and determine the date when each positions was initially traded. I currently have to log everything in a pickle file and that kinda sucks. Maybe there’s something in the API I’ve missed?
Thanks so much in advance
Jimmy