I am getting this error and any help would be greatly appreciated
“One or more errors occurred. (Unable to cast object of type 'QuantConnect.Data.UniverseSelection.CoarseFundamental' to type 'QuantConnect.Symbol'.) in UniverseSelection.cs:line 164”.
class EarningsContinuation(QCAlgorithm):
def Initialize(self):
self.SetStartDate(2021, 9, 14) # Set Start Date
self.SetEndDate(2022, 9, 14)
self.SetCash(100000) # Set Strategy Cash
self.UniverseSettings.Resolution = Resolution.Minute
self.AddUniverse(self.CoarseSelectionFunction, self.FineSelectionFunction)
self.spy = self.AddEquity('SPY',Resolution.Minute).Symbol
self.Schedule.On(self.DateRules.EveryDay('SPY'),self.TimeRules.AfterMarketOpen('SPY',1), self.Strong)
def CoarseSelectionFunction(self,coarse):
sortedByDollarVolume = sorted(coarse, key=lambda x: x.DollarVolume, reverse=True)
byprice = [x for x in sortedByDollarVolume if x.DollarVolume > 1000000 and x.Price > 5 and x.HasFundamentalData]
byprice = byprice[:500]
return byprice
Nico Xenox
Hey Stelios Sbilis,
you have to return the symbols from the universe.
Change these lines:
to:
Best,
Nico
Stelios Sbilis
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!