Hi all;

In writing a C# algo I am getting the following warning:

warning CS0618: 'Security.SetDataNormalizationMode(DataNormalizationMode)' is obsolete: 'This method is obsolete. Use the 'SubscriptionDataConfig' exposed by 'SubscriptionManager' and the 'SetDataNormalizationMode()' extension method'

This occurs on the code:

// Security security

security.SetDataNormalizationMode(DataNormalizationMode.Adjusted);

However, QCAlgorithm.SubscriptionManager only has a SubscriptionDataConfigService (no SubscriptionDataConfig) property. And that property does not have a SetDataNormalizationMode() method.

So where is this?

thanks - dave

Author