Skip to content

Commit

Permalink
Add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
jhonabreul committed Nov 18, 2024
1 parent 75d424f commit c0e3c40
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Engine/DataFeeds/SubscriptionDataReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -338,6 +338,9 @@ public bool MoveNext()

// Source change, check if we should emit the current instance
if (currentSource != _source
// Don't skip for base data collections (like universe files): those daily files are not read in the
// same way price daily files are read. e.g universe files for date X are loaded in a collection with end time of X+1,
// we don't what to skip them
&& !_config.Type.IsAssignableTo(typeof(BaseDataCollection))
&& (
// After a mapping for every resolution except daily:
Expand Down

0 comments on commit c0e3c40

Please sign in to comment.