Changes to start and end dates so open source project data can be used

This commit is contained in:
Jack Simonson
2019-05-16 09:25:27 -07:00
parent 4c1f147acf
commit ec9b1170f3
2 changed files with 5 additions and 4 deletions
@@ -26,8 +26,9 @@ import numpy as np
class BasicCSharpIntegrationTemplateAlgorithm(QCAlgorithm):
def Initialize(self):
self.SetStartDate(2018, 11, 10) #Set Start Date
self.SetEndDate(2013,12, 1) #Set End Date
self.SetStartDate(2013,10, 7) #Set Start Date
self.SetEndDate(2013,10,11) #Set End Date
self.SetCash(100000) #Set Strategy Cash
self.AddEquity("SPY", Resolution.Second)