Hello,

I'm trying to create a universe with forex symbols from Oanda, but I get this error:

Runtime Error: An item with the same key has already been added. Key: 11/03/2017 20:00:00

although the symbols are different:

instruments=['EURUSD','EURJPY'] symbols = [Symbol.Create(instrument, SecurityType.Forex, Market.Oanda) for instrument in instruments] self.SetUniverseSelection( ManualUniverseSelectionModel(symbols) )

Can somebody help please?

Thanks
Daniele

Author