Removes logging from framework models and algorithms

Shipped modules should be silent unless error case.
This commit is contained in:
AlexCatarino
2018-07-31 19:16:17 +01:00
parent e5ed09924b
commit 0bc157a8e7
8 changed files with 0 additions and 64 deletions
@@ -53,12 +53,6 @@ class BasicTemplateOptionsFrameworkAlgorithm(QCAlgorithmFramework):
self.SetRiskManagement(NullRiskManagementModel())
def OnOrderEvent(self, fill):
self.Log(f"{self.UtcTime}:: {fill}")
def OnSecuritiesChanged(self, changes):
self.Log(f"{self.UtcTime}:: {changes}")
def SelectOptionChainSymbols(self, utcTime):
newYorkTime = Extensions.ConvertFromUtc(utcTime, TimeZones.NewYork)
ticker = "TWX" if newYorkTime.date() < date(2014, 6, 6) else "AAPL"