I would like to be able to save the maximum values for the stocks in my universe at a given time after open, then, trade off of those levels but I can't seem to find a solution. Any suggestions are appreciated.
for x in self.symbols:
self.AddSecurity(x)
self.maxPrices45 = {}
for x in self.symbols:
self.maxPrices45[x] = self.MAX(x, 45)
self.minPrices45 = {}
for x in self.symbols:
self.minPrices45[x] = self.MIN(x, 45)
self.maxPrices45final = {}
for x in self.maxPrices45:
self.Schedule.On(self.DateRules.EveryDay(x), self.TimeRules.AfterMarketOpen(x, 45), self.maxPrices45.Current.Value = self.maxPrices45final)
self.minPrices45final = {}
for x in self.minPrices45:
self.Schedule.On(self.DateRules.EveryDay(x), self.TimeRules.AfterMarketOpen(x, 45), self.minPrices45.Current.Value = self.minPrices45final)
Vladimir
Victoria Butler
Try this way
If you are satisfied with my answer, please accept it.
Victoria Butler
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!