Hello All,
I am new to QuantConnect and still figuring out the basics. I need to know how to check what stocks my algorithim is invested in at a given time.
For example, if my algo buys AAPL, I need my algo to check if it's invested in AAPL so it can act accordingly.
I tried something like this, but get "'bool' object is not callable."
if self.Portfolio.Invested('XIV'):
self.SetHoldings(self.xiv, 0)
self.SetHoldings(self.vxx, 1)
elif self.Portfolio.Invested('VXX'):
self.SetHoldings(self.xiv, 1)
self.SetHoldings(self.vxx, 0)
Thanks!
HanByul P
Hi Malachi Bazar, Try below. Thanks :)
if self.Portfolio["AAPL"].Invested: # do something ... if not self.Portfolio["AAPL"].Invested: # do something else ...
Malachi Bazar
Exactly what I needed. Thanks!
Malachi Bazar
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!