Hello All,

When I test using dates in 2014, as provided in some examples, my CoarseSelectionFunction returns records as expected. 

However, when I change the date to a later date, such as in 2018 or 2019, I get 0 records.

I think that the default Dataset is “US Coarse Universe Dataset by QuantConnect”.

For example with the following code I get back 7120 records in my coarse universe:

        public override void Initialize()
       {
           UniverseSettings.Resolution = Resolution.Minute;

           SetStartDate(2014, 04, 02);
           SetEndDate(2014, 04, 02);
           SetCash(50000);

           AddUniverse(CoarseSelectionFunction);
       }

Then, for the following I get back 0 records in my coarse universe:

        public override void Initialize()
       {
           UniverseSettings.Resolution = Resolution.Minute;

           SetStartDate(2016, 04, 06);
           SetEndDate(2016, 04, 06);
           SetCash(50000);

           AddUniverse(CoarseSelectionFunction);
       }

I have tried dates in later years, 2018, 2019, with the same result, no data.

What am I doing wrong? Thoughts and ideas?

Thanks,

Eric