Hi All,
Many systems run multiple algorithms simultaneously to smooth the PL curve.
Do you plan to implement something similar in QC in a feasible time?
E.g.: one way would be to create "portfolio" and chose already created algorithms and basically merge their results
thus creating the final result.
Currently we can achieve it by implementing it ourselves, but if we have multi-algorithm portfolio, we can just "point and choose"
already created algos and see how they work combined.
Thanks
Nik
Jared Broad
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.
Nik milev
Jared Broad
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.
Nik milev
Michael Handschuh
Reuben
Adrian Torrie
Nik milev
Nik milev
Jared Broad
class QCAlgorithmManager : QCAlgorithm { public List Children;
private QCAlgorithm Child-John {};
private QCAlgorithm Child-Jane {};
private QCAlgorithm Child-Bob {};
}
We'll need to make a change to the Loader to select the QCAlgorithmManager if there are multiple QCAlgorithm types in the DLL. The example you explained above (long/short MSFT) is how we model the portfolio. This doesn't really support going long and short simultaneously as you've pointed out. As we get deeper into FX we've found some brokerages model trades as individual tickets - and you can go long and short on separate trades as you like. We don't support this style of portfolio accounting yet but its also on our todo list :)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.
Alexandre Catarino
We have solved this issue through a different approach: Alpha Streams!
So, instead of having a suite of algos working together, we can have a suite of alpha models working together using the CompositeAlphaModel.
Waverider
Sounds, good, I'll look into it ! : )
Hang on, isn't Alpha Streams just the investor portal? Does that relate to my wanting to create a suite of algo's which run together and produce combined results?
In terms of 'capital rebalancing' discussed above, the way I do it in live trading is simply to allocate a % of the portfolio to each model on a daily basis, as new tades are generated (works for models that hold for fairly short time periods). Using this approach, it's not necessary really to worry about what % each model is using at any one time, but just looking at the total value of the portfolio each day for making the next day's trading decisions.
IB allows me to send an "Order Ref" with each trade, which I use to tag which strategy each trade comes from, and whether Long or Short.
Alexandre Catarino
Alpha Streams is the strategy licensing.
It related to the creation of a suite of algorithms which run together because we can only license strategies using the algorithm framework.
Your approach is totally legit, waverider, but it is not the understanding of "running multiple algorithms" that has been discussed in this thread.
Nik milev
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!