Hello 

I'm new to QC and was playing around with the notebook example. Could someone help me with the following questions please -

 

 a) Noticed that historical options data is not available for recent business days. To illustrate, last available date (as of today) for AMZN is Nov 27, 2018. Is there a way to pull more recent history?

amzn = qb.AddOption("AMZN")

amzn.SetFilter(-2, 2, timedelta(0), timedelta(180))

option_history = qb.GetOptionHistory(amzn.Symbol, datetime(2018, 11, 27))
print (option_history.GetStrikes())
print (option_history.GetExpiryDates())
h7 = option_history.GetAllData()

b) How do I use option_history object to query specific expiry days?

 

Many Thanks!

Author