I've opened a Research Environment and am able to run the code in there. For instance, I'm able to see the graph of SPY daily close prices. 

I've tried:

gold = qb.AddFuture("GCZ7") h1 = qb.History(360, Resolution.Daily)

This works without complaint in Jupyter.

But when I query for data:

h1.loc["GCZ7"]["close"].plot()

It fails:

KeyError: 'the label [GCZ7] is not in the [index]'

I searched the discussions without finding anything on this. The link to the docs does not mention futures data. It is not immediately clear to me how to transition the algorithm (

https://github.com/QuantConnect/Lean/blob/master/Algorithm.Python/BasicTemplateFuturesAlgorithm.py

) into the Jupyter notebook. I'm guessing based on the algorithm that there is some sort of subcription to futures chain that I need to do. Please help -- presumably by providing an example. 

Author