It appears that I can not load extended market hours in a research notebook, is this true?

This works fine in an “Algorithm Lab” notebook:

import datetime as dt
qb=QuantBook()

start_date = dt.datetime(2020, 1, 2)  # Adjust the start date
end_date = dt.datetime(2020, 1, 3)  # Adjust the end date
symbol = qb.AddFuture("ES").Symbol
resolution = Resolution.Minute

data = qb.History([symbol], start_date, end_date, resolution)

But if I try to add the “includeExtendedMarketHours=True” parameter to the History call, it errors out.

Is there a way to use extended market hours in a notebook?  I was hoping to train a model in the notebook, but it will require access to historical extended hours.

Sorry for the newbie question, hopefully someone can clear this up for me.

Thanks!
MikeJ