Equity
Liquidity Universes
Create Universes
To add a dollar volume universe, call the Universe.DollarVolume.Top
helper method and pass the result to the AddUniverse
method.
// Add the 50 stocks with the highest dollar volume AddUniverse(Universe.DollarVolume.Top(50));
// Add the 50 stocks with the highest dollar volume self.AddUniverse(self.Universe.DollarVolume.Top(50))
Examples
Demonstration Algorithms
UniverseSelectionDefinitionsAlgorithm.py Python
UniverseSelectionDefinitionsAlgorithm.cs C#