Hello,
I am a former Quantopian rookie quant and want to move my algo to Quantconnect.
I am having trouble with the schedule function. I tried many different ways to make it work and the engine still shows me error despite emulating libray, examples and documentation. I am stuck.
Same thing with these 3 lines that I moved inside the REbalance function. I cannot seem to make them indexing properly. They work inside research but not under the engine.
C = self.prices['close'].unstack(level=0)
H = self.prices['high'].unstack(level=0)
L = self.prices['low'].unstack(level=0)
Can you help me tweak it to make it work.
I will keep workin gin it afterwards to move my algo from Quantopian.
Thanks a lot
Matt
Jing Wu
To schedule an event to fire every day you can refer to this example.
The history request for multiple symbols returns a multi-index dataframe. The following example should work.
# Request history for a list of symbols symbols_slices = self.History(["AAPL", "SPY", "VXX"], 4, Resolution.Daily) # multi-index dataframe # single index dataframe with the closing price of all symbols all_symbols_close = slices["close"].unstack(level=0)
Please share the algorithm if the problem persists.
Mathieu Robitaille
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!