I keep on getting the runtime error below even though I already confirmed that the particular symbol(s) triggering the error is(are) indeed in the Securities object.
Runtime Error: Please register to receive data for symbol 'CMCSA' using the AddSecurity() function.
at ema_filter
self.ema5 = self.EMA(self.Securities[symbol].Symbol, 5, Resolution.Daily)
Mia Alissi
The error message you're seeing is typically due to trying to use a symbol that hasn't been added to your algorithm using the
AddSecurity()
orAddEquity()
function. In your case, it seems like you're trying to use a symbol 'CMCSA' that hasn't been added.You should add these securities using the
AddEquity()
function before creating the EMA indicator. Here's how you can modify your code:This will ensure that the symbol you're trying to create an EMA for is added to your algorithm.
Also, please note that Python doesn't support method overloading like C#, so if you have two
OnData
methods in your code, the secondOnData
method will overwrite the first one. You should remove or rename one of them.Sources:
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.
John Paul Dulay
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!