Rename SimplePortfolioConstructionModel -> EqualWeightingPortoflioConstructionModel

The simple name was too simple and too vague. Equal weighting nicely
describes the purpose and intent of this model
This commit is contained in:
Michael Handschuh
2018-03-26 16:11:07 -04:00
parent 48c691c2bb
commit c5704a1cd4
6 changed files with 6 additions and 6 deletions
@@ -57,7 +57,7 @@ class BasicTemplateFrameworkAlgorithm(QCAlgorithmFramework):
# set algorithm framework models
self.PortfolioSelection = ManualPortfolioSelectionModel(symbols)
self.Alpha = ConstantAlphaModel(InsightType.Price, InsightDirection.Up, timedelta(minutes = 20), 0.025, None)
self.PortfolioConstruction = SimplePortfolioConstructionModel()
self.PortfolioConstruction = EqualWeightingPortfolioConstructionModel()
self.Execution = ImmediateExecutionModel()
self.RiskManagement = NullRiskManagementModel()