diff --git a/Algorithm.CSharp/OptionChainedAndUniverseSelectionRegressionAlgorithm.cs b/Algorithm.CSharp/OptionChainedAndUniverseSelectionRegressionAlgorithm.cs
index d505f282ddf9..cac550a456fd 100644
--- a/Algorithm.CSharp/OptionChainedAndUniverseSelectionRegressionAlgorithm.cs
+++ b/Algorithm.CSharp/OptionChainedAndUniverseSelectionRegressionAlgorithm.cs
@@ -95,7 +95,7 @@ public override DateTime GetNextRefreshTimeUtc()
///
/// Data Points count of all timeslices of algorithm
///
- public long DataPoints => 3547404;
+ public long DataPoints => 3547410;
///
/// Data Points count of the algorithm history
diff --git a/Algorithm.CSharp/OptionPriceModelForSupportedAmericanOptionTimeSpanWarmupRegressionAlgorithm.cs b/Algorithm.CSharp/OptionPriceModelForSupportedAmericanOptionTimeSpanWarmupRegressionAlgorithm.cs
index b1c837653b0d..1ebae8273a70 100644
--- a/Algorithm.CSharp/OptionPriceModelForSupportedAmericanOptionTimeSpanWarmupRegressionAlgorithm.cs
+++ b/Algorithm.CSharp/OptionPriceModelForSupportedAmericanOptionTimeSpanWarmupRegressionAlgorithm.cs
@@ -35,6 +35,6 @@ public override void Initialize()
///
/// Data Points count of all timeslices of algorithm
///
- public override long DataPoints => 3547401;
+ public override long DataPoints => 3547407;
}
}
diff --git a/Algorithm.CSharp/OptionPriceModelForUnsupportedAmericanOptionTimeSpanWarmupRegressionAlgorithm.cs b/Algorithm.CSharp/OptionPriceModelForUnsupportedAmericanOptionTimeSpanWarmupRegressionAlgorithm.cs
index 900fb1a25ee8..588ca996ab32 100644
--- a/Algorithm.CSharp/OptionPriceModelForUnsupportedAmericanOptionTimeSpanWarmupRegressionAlgorithm.cs
+++ b/Algorithm.CSharp/OptionPriceModelForUnsupportedAmericanOptionTimeSpanWarmupRegressionAlgorithm.cs
@@ -34,6 +34,6 @@ public override void Initialize()
///
/// Data Points count of all timeslices of algorithm
///
- public override long DataPoints => 3547401;
+ public override long DataPoints => 3547407;
}
}
diff --git a/Algorithm.CSharp/WarmupOptionResolutionRegressionAlgorithm.cs b/Algorithm.CSharp/WarmupOptionResolutionRegressionAlgorithm.cs
index 00b0d0950cc0..c860aa7fdb5e 100644
--- a/Algorithm.CSharp/WarmupOptionResolutionRegressionAlgorithm.cs
+++ b/Algorithm.CSharp/WarmupOptionResolutionRegressionAlgorithm.cs
@@ -50,6 +50,6 @@ public override void OnEndOfAlgorithm()
///
/// Data Points count of all timeslices of algorithm
///
- public override long DataPoints => 556822;
+ public override long DataPoints => 558446;
}
}
diff --git a/Common/Data/UniverseSelection/Universe.cs b/Common/Data/UniverseSelection/Universe.cs
index e8f74aee87ab..11cc6172c5c6 100644
--- a/Common/Data/UniverseSelection/Universe.cs
+++ b/Common/Data/UniverseSelection/Universe.cs
@@ -141,13 +141,6 @@ public virtual bool CanRemoveMember(DateTime utcTime, Security security)
return true;
}
- // if we haven't begun receiving data for this security then it's safe to remove
- var lastData = security.Cache.GetData();
- if (lastData == null)
- {
- return true;
- }
-
Member member;
if (Securities.TryGetValue(security.Symbol, out member))
{