Upgrade LEAN Python to 3.6 from 2.7
- Adds log to display the python version the algorithm is using. - Fixes python algorithms that were failing because of small subtleties like leading zeroes. - Updates pythonnet with a version compiled with python 3.6 flags - Changes in DockerfileFoundation: we now use miniconda to manage the python environment. - Took the opportunity to add NTLK (#1349), Tensorforce (#1369) and PyTorch/Pyro (#1385). - Changes readme in Algorithm.Python to show steps to install miniconda
This commit is contained in:
@@ -32,8 +32,8 @@ import numpy as np
|
||||
class CustomVolatilityModelAlgorithm(QCAlgorithm):
|
||||
|
||||
def Initialize(self):
|
||||
self.SetStartDate(2013,10,07) #Set Start Date
|
||||
self.SetEndDate(2015,07,15) #Set End Date
|
||||
self.SetStartDate(2013,10,7) #Set Start Date
|
||||
self.SetEndDate(2015,7,15) #Set End Date
|
||||
self.SetCash(100000) #Set Strategy Cash
|
||||
# Find more symbols here: http://quantconnect.com/data
|
||||
self.equity = self.AddEquity("SPY", Resolution.Daily)
|
||||
|
||||
Reference in New Issue
Block a user