Similar to another post I read, this exercise fails even if I view the solution and copy/paste into my answer and submit. I see the following errors in my log file.
1880 | 16:29:21: Boot Camp: Looks like you aren't allocating securities and liquidating appropriately...
1881 | 16:29:22: Boot Camp: Exercise failed. Please try again..
This is the key event handler for security changes.
public override void OnSecuritiesChanged(SecurityChanges changes)
{
_changes = changes;
Log($"OnSecuritiesChanged({UtcTime}):: {changes}");
foreach (var security in changes.RemovedSecurities)
{
if (security.Invested)
{
Liquidate(security.Symbol);
}
}
//2. Now that we have more leverage, set the allocation to set the allocation to 18% each instead of 10%
foreach (var security in changes.AddedSecurities)
{
SetHoldings(security.Symbol, 0.18m);
}
}
Jack Simonson
Hi Tim,
Thanks for bringing this to our attention. We've fixed the bug and the solution will run successfully now.
Tim Bohmann
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.
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!