Merge Framework and Classic Algorithms

- Merging Framework and Bridge algorithms into classic QCAlgorithm
class.
- Removing Framework project, VS17 and VS15
This commit is contained in:
Martin Molinero
2019-03-28 15:56:25 -03:00
parent 404e34ef18
commit 32ac3146b4
179 changed files with 797 additions and 485 deletions
@@ -14,7 +14,6 @@
from clr import AddReference
AddReference("System")
AddReference("QuantConnect.Algorithm")
AddReference("QuantConnect.Algorithm.Framework")
AddReference("QuantConnect.Common")
from System import *
@@ -35,7 +34,7 @@ from datetime import date, timedelta
### Basic template options framework algorithm uses framework components
### to define an algorithm that trades options.
### </summary>
class BasicTemplateOptionsFrameworkAlgorithm(QCAlgorithmFramework):
class BasicTemplateOptionsFrameworkAlgorithm(QCAlgorithm):
def Initialize(self):