Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Respect minimum time in universe always #7379

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public override DateTime GetNextRefreshTimeUtc()
/// <summary>
/// Data Points count of all timeslices of algorithm
/// </summary>
public long DataPoints => 3547404;
public long DataPoints => 3547410;

/// <summary>
/// Data Points count of the algorithm history
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ public override void Initialize()
/// <summary>
/// Data Points count of all timeslices of algorithm
/// </summary>
public override long DataPoints => 3547401;
public override long DataPoints => 3547407;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ public override void Initialize()
/// <summary>
/// Data Points count of all timeslices of algorithm
/// </summary>
public override long DataPoints => 3547401;
public override long DataPoints => 3547407;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@ public override void OnEndOfAlgorithm()
/// <summary>
/// Data Points count of all timeslices of algorithm
/// </summary>
public override long DataPoints => 556822;
public override long DataPoints => 558446;
}
}
7 changes: 0 additions & 7 deletions Common/Data/UniverseSelection/Universe.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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))
{
Expand Down