I made some local changes to shared Python files in the Library folder but when I run ≤ancloudpush it does not push those changes and when I run ≤ancloudpush--projectLibrary, I get an error that Library is not a Lean project.
QUANTCONNECT COMMUNITY
I made some local changes to shared Python files in the Library folder but when I run ≤ancloudpush it does not push those changes and when I run ≤ancloudpush--projectLibrary, I get an error that Library is not a Lean project.
Hi Miguel,
The "Is this necessary?" comment was just accidentally left behind during development of the backtest above. The comment can be removed. Calling Liquidate does sell the positions in the portfolio.
In regards to the data normalization error, the underlying issue is that the security∈itializer is only called once, when a security is created. When a security is added/removed to/from the universe, we don't delete the security, we only add/remove data subscriptions, which are created by using the UniverseSe∈gs properties. Therefore, to resolve the data normalization error, we should remove
if security.Type == SecurityType.Equity:
security.SetDataNormalizationMode(DataNormalizationMode.Raw)
from the security∈itializer and instead add
self.UniverseSettings.DataNormalizationMode = DataNormalizationMode.Raw
See the attached backtest for reference.
Best,
Derek Melchin
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!