Update Python regression tests to match C# equivalents

This commit is contained in:
Stefano Raggi
2018-07-02 23:48:47 +02:00
parent f024e57ac1
commit 7a9fc44ccd
8 changed files with 58 additions and 46 deletions
@@ -35,8 +35,8 @@ class BasicTemplateDailyAlgorithm(QCAlgorithm):
def Initialize(self):
'''Initialise the data and resolution required, as well as the cash and start-end dates for your algorithm. All algorithms must initialized.'''
self.SetStartDate(2013,10,7) #Set Start Date
self.SetEndDate(2013,10,18) #Set End Date
self.SetStartDate(2013,10,8) #Set Start Date
self.SetEndDate(2013,10,17) #Set End Date
self.SetCash(100000) #Set Strategy Cash
# Find more symbols here: http://quantconnect.com/data
self.AddEquity("SPY", Resolution.Daily)