Hi there,

One thing that is not clear to me is how to access indicators with multiple continuous futures contracts.

I understand how the SMA indicator is being accessed when accessing the history of one continuous futures contract like in this example:

  1. # region imports
  2. from AlgorithmImports import *
  3. # endregion
  4. class USFuturesSecurityMasterDataClassicAlgorithm (QCAlgorithm):
  5. threshold = 0.01 # 1%
  6. def Initialize(self) -> None:
  7. self.SetCash(1000000)
  8. self.SetStartDate(2022, 1, 1)
  9. self.SetEndDate(2022, 6, 1)
  10. # Requesting data
  11. self.continuous_contract = self.AddFuture(Futures.Energies.CrudeOilWTI,
  12. dataNormalizationMode = DataNormalizationMode.BackwardsRatio,
  13. dataMappingMode = DataMappingMode.OpenInterest,
  14. contractDepthOffset = 0)
  15. self.symbol = self.continuous_contract.Symbol
  16. # Historical data
  17. history = self.History(self.symbol, 500, Resolution.Minute)
  18. self.Debug(f"We got {len(history)} items from our history request")
  19. self.sma = self.SMA(self.symbol, 10, Resolution.Daily)
  20. if not history.empty:
  21. for time, row in history.droplevel(0).loc[self.symbol].iterrows():
  22. self.sma.Update(IndicatorDataPoint(time, row.close))
  23. self.Log(history)
  24. def OnData(self, slice: Slice) -> None:
  25. # Accessing data
  26. for changed_event in slice.SymbolChangedEvents.Values:
  27. if changed_event.Symbol == self.symbol:
  28. self.Log(f"SymbolChanged event at {self.Time}: {changed_event}")
  29. mapped_symbol = self.continuous_contract.Mapped
  30. if not (slice.Bars.ContainsKey(self.symbol) and self.sma.IsReady and mapped_symbol):
  31. return
  32. if slice.Bars[self.symbol].Price > self.sma.Current.Value * (1+self.threshold) and not self.Portfolio[mapped_symbol].IsLong:
  33. self.MarketOrder(mapped_symbol, 1)
  34. elif slice.Bars[self.symbol].Price < self.sma.Current.Value * (1-self.threshold) and not self.Portfolio[mapped_symbol].IsShort:
  35. self.MarketOrder(mapped_symbol, -1)
+ Expand

But what if I want to access the SMA indicator for an array of continuous futures whose history is accessed by something like this:

  1. # Requesting data
  2. self.CL = self.AddFuture(Futures.Energies.CrudeOilWTI,
  3. dataNormalizationMode = DataNormalizationMode.BackwardsRatio,
  4. dataMappingMode = DataMappingMode.OpenInterest,
  5. contractDepthOffset = 0)
  6. self.ES = self.AddFuture(Futures.Indices.SP500EMini,
  7. dataNormalizationMode = DataNormalizationMode.BackwardsRatio,
  8. dataMappingMode = DataMappingMode.OpenInterest,
  9. contractDepthOffset = 0)
  10. self.symbols = [
  11. self.CL.Symbol,
  12. self.ES.Symbol
  13. ]
  14. # Get historical data
  15. data = self.History(self.symbols, period, Resolution.Daily)
+ Expand

How would I iterate using:

  1. for symbol in self.symbols:

to generate SMA for each symbol so I could determine whether or not to buy/sell that symbol based on comparing price to the SMA?

Thanks in advance,

David

Author

David Lelong

July 2022