If I use a Future Universe in the Algorithm Framework, how can I get the price of each current Future contract in the CreateTargets method of the PortfolioConstructionModel based on the insights symbols? 

def CreateTargets(self, algorithm, insights): targets = [] for insight in insights: #priceOfCurrentContract = ? return targets

 

Author