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")
AddReference("QuantConnect.Indicators")
@@ -28,7 +27,7 @@ from datetime import timedelta
### <summary>
### Demonstration algorithm showing how to easily convert an old algorithm into the framework.
###
###
### 1. Make class derive from QCAlgorithmFrameworkBridge instead of QCAlgorithm.
### 2. When making orders, also create insights for the correct direction (up/down), can also set insight prediction period/magnitude/direction
### 3. Profit :)