Hello,

Suppose I want to make an alpha model that looks at the term structure of some futures and gives an insight based on this, for example, I want to see if the VIX futures are in backwardation or not so

        # in Initialize method
        self.vx1 = self.AddFuture(Futures.Indices.VIX,
                                  dataNormalizationMode=DataNormalizationMode.BackwardsRatio,
                                  dataMappingMode=DataMappingMode.OpenInterest,
                                  contractDepthOffset=0)
        self.vx2 = self.AddFuture(Futures.Indices.VIX,
                                  dataNormalizationMode=DataNormalizationMode.BackwardsRatio,
                                  dataMappingMode=DataMappingMode.OpenInterest,
                                  contractDepthOffset=1)

Then in my alpha object, how do I access vx1 and vx2 to check if vx1>vx2 for instance? 

I have the feeling that it is currently impossible because the only symbol I have access to in the Update and OnSecuritiesChanged is /VX.

Thanks in advance for the help!