Creates QCAlgorithm.py: a bridge between C# QCAlgorithm and python algorithms

This commit is contained in:
AlexCatarino
2018-09-05 22:26:16 +01:00
parent 9e0d2dce3a
commit 3e4a71cd50
115 changed files with 467 additions and 243 deletions
+1 -2
View File
@@ -13,15 +13,14 @@
from clr import AddReference
AddReference("System")
AddReference("QuantConnect.Algorithm")
AddReference("QuantConnect.Common")
from System import *
from QuantConnect import *
from QuantConnect.Algorithm import *
from QuantConnect.Data import *
from QuantConnect.Data.Market import *
from QuantConnect.Orders import *
from QCAlgorithm import QCAlgorithm
### <summary>
### Demonstration of using the Delisting event in your algorithm. Assets are delisted on their last day of trading, or when their contract expires.