What is postback format for order update. Like in [{},{}] or each order update just comes in {}. I'm asking because for order update I want to iterate over it for mining some information. So will thia worl, lile for d in data: kind of thing for python?!
if data['tag']=='exit':
if data['status']=='COMPLETE':
logger.info('Exit order COMPLETE for',+ data['tradingsymbol'])
Is this correct way?