Hi,
I have a few questions about a trading algorithm I came up with.
1. I am getting a NoneType error during different time periods and I have seen other responses saying to do "If something is None: Return" but, this does not help in my situation.
2. I am hoping to get this algrothim to buy and sell during the trading hours when an if statement is executed instead of just at midnight.
3. Lastly, I am unsure if the elif statement off of the initial if statement will be executed? I am thinking it may not get executed due to the NoneType error. Any help is much appreciated.
Thanks,
Ken
-only pay attention to the main.py the other ones are scratch work
Jing Wu
“Identity()” is an indicator, you only need to create the indicator once in Initialize(). Please see the reply
Please also check if the data frame is empty before retrieving the value from the data frame with the symbol index.
To make sure the slice data exists for the specified symbol, it is necessary to add this
def OnData(self): if data.Bars.ContainsKey("SPY"): # obtain the price
Ken Hampel
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!