# QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals. # Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. from AlgorithmImports import * class StatelessCoarseUniverseSelectionBenchmark(QCAlgorithm): def initialize(self): self.universe_settings.resolution = Resolution.DAILY self.set_start_date(2017, 1, 1) self.set_end_date(2019, 1, 1) self.set_cash(50000) self.add_universe(self.coarse_selection_function) self.number_of_symbols = 250 # sort the data by daily dollar volume and take the top 'NumberOfSymbols' def coarse_selection_function(self, coarse): selected = [x for x in coarse if (x.has_fundamental_data)] # sort descending by daily dollar volume sorted_by_dollar_volume = sorted(selected, key=lambda x: x.dollar_volume, reverse=True) # return the symbol objects of the top entries from our sorted collection return [ x.symbol for x in sorted_by_dollar_volume[:self.number_of_symbols] ] def on_securities_changed(self, changes): # if we have no changes, do nothing if changes is None: return # liquidate removed securities for security in changes.removed_securities: if security.invested: self.liquidate(security.symbol) for security in changes.added_securities: self.set_holdings(security.symbol, 0.001)