LEAN is the open source
algorithmic trading engine powering QuantConnect. Founded in 2013 LEAN has been built by a
global community of 80+ engineers and powers more than a dozen hedge funds today.
Alpha League Competition: $1,000 Weekly Prize Pool
Qualifying Alpha Streams Reentered Weekly Learn
more
I try to write a pairs trading strategy based on co-integration. This is supposed to be fun project to learn qc datastructur etc.. Unfortunately I do run into various troubles all the time. Maybe someone could help me with this one. In the current algo, I have created two rolling windows. Data should be only added if both assets are present in the onData dataset. If the Windows are ready, cointegration would be estimated. However, this never happens. Any thoughs on that? Note: the SPY position is only for testing since I am also not able to get any log messages to work.
The material on this website is provided for informational purposes only and does not constitute an offer to sell, a solicitation to buy, or a recommendation or endorsement for any security or strategy, nor does it constitute an offer to provide investment advisory services by QuantConnect. In addition, the material offers no opinion with respect to the suitability of any security or specific investment. QuantConnect makes no guarantees as to the accuracy or completeness of the views expressed in the website. The views are subject to change, and may have become unreliable for various reasons, including changes in market conditions or economic circumstances. All investments involve risk, including loss of principal. You should consult with an investment professional before making any investment decisions.
The material on this website is provided for informational purposes only and does not constitute an offer to sell, a solicitation to buy, or a recommendation or endorsement for any security or strategy, nor does it constitute an offer to provide investment advisory services by QuantConnect. In addition, the material offers no opinion with respect to the suitability of any security or specific investment. QuantConnect makes no guarantees as to the accuracy or completeness of the views expressed in the website. The views are subject to change, and may have become unreliable for various reasons, including changes in market conditions or economic circumstances. All investments involve risk, including loss of principal. You should consult with an investment professional before making any investment decisions.
Thanks for sending the code! Since the event handler OnData(self, data) was lowercase in the code, QCAlgorithm was actually not able to find the method. As a result, the algorithm did not run any other code after initializing. In OnData there were some minor errors in the conditional statements. It is important to note that IsReady is a property of the RollingWindow, not a callable function. Now the RollingWindow is being populated and the strategy portion of the algorithm is running. The code below should get you started. In the files, I noticed a PortfolioConstructionModel and AlphaModel. That is part of QuantConnect's algorithm framework and if they are used the algorithm will need to extend from QCAlgorithmFramework, not QCAlgorithm. The link below will have more documentation on using the framework you end up going in that direction.
def OnData(self, data):
# check if prices for both asset are present
if data[self.asset1] and data[self.asset2]:
self.p1.Add(data[self.asset1].Close)
self.p2.Add(data[self.asset2].Close)
else:
return None
if self.p1.IsReady and self.p2.IsReady and self.weights is None:
self.Debug("enter strategy")
arr = np.matrix([self.p1[:], self.p2[:]]).T
self.weights = calculate_cointegration_weights(arr)
self.SetHoldings("SPY", 1)
Hi, thanks for fixing my bugs. I would have not be able to find the lower case by myself. I will most certainly use the Framework more extensively in the future, but am still not familiar enough with all the classes and functions required. Thus I wanted to implemt a more simplistic version.
The material on this website is provided for informational purposes only and does not constitute an offer to sell, a solicitation to buy, or a recommendation or endorsement for any security or strategy, nor does it constitute an offer to provide investment advisory services by QuantConnect. In addition, the material offers no opinion with respect to the suitability of any security or specific investment. QuantConnect makes no guarantees as to the accuracy or completeness of the views expressed in the website. The views are subject to change, and may have become unreliable for various reasons, including changes in market conditions or economic circumstances. All investments involve risk, including loss of principal. You should consult with an investment professional before making any investment decisions.
Loading...
To unlock posting to the community forums please complete at least 30% of Boot Camp. You can
continue your Boot Camp training progress from the
terminal. We hope to see you in the community soon!
You do not have enough QC Credit to send this award, get a QC Credit Pack
here.
Award Sent Successfully
Thank you for giving back to the community.
Processing...
Choose a Credit Pack
Payment Confirmation
QuantConnect Credit (QCC) can be applied to your cloud-invoices or
gifted to others in the community with Community Awards in recognition of their contributions.
Community Awards highlight the awesome work your fellow community members are doing and inspires
high quality algorithm contributions to the community. Select an option below to add
QuantConnect Credit to your account:
$5
500 Credit Points
 
$10
1,000 Credit Points
 
$18
2,000 Credit Points
10% bonus
$45
5,000 Credit Points
10% bonus
03/23XXXX XXXX XXXX 0592
We will charge your default organization credit card on file, click
here to update.