Hi. I would like to call a function much like onData() gets called on an hour tick set by my resolution but i need to call this function every second to check for some stuff without changing my hourly resolution for my trades. any pointers? thanks.
Don't have an account? Join QuantConnect Today
QuantConnect Community Discussions
QUANTCONNECT COMMUNITY
LEAN is the open-source algorithmic trading engine powering QuantConnect. Founded in 2012 LEAN has been built by a global community of 180+ engineers and powers more than 300+ hedge funds today.
Join QuantConnect's Discord server for real-time support, where a vibrant community of traders and developers awaits to help you with any of your QuantConnect needs.
The Open-Quant League is a quarterly competition between universities and investment clubs for the best-performing strategy. The previous quarter's code is open-sourced, and competitors must adapt to survive.
Call a function every second without changing hourly resolution for trades. Need pointers.
Continue ReadingRefer to our Research Guidelines for high quality research posts.
Create an account on QuantConnect for the latest community delivered to your inbox.
Sign Up Today
|
|
|||||||
|
|
||||||||
|
Calling a function every second on an hour resolution
Noel Hernandez | QuantGeeks | November 2017
Hi. I would like to call a function much like onData() gets called on an hour tick set by my resolution but i need to call this function every second to check for some stuff without changing my hourly resolution for my trades. any pointers? thanks.
QuantConnectâ„¢ 2025. All Rights Reserved
Alexandre Catarino
If we want to access second-resolution data, that is the lowest resolution we have to subcribe to.
In your algorithm, you will create a consolidator that will consolidate second-resolution data into hour-resolution bars. The trades will be placed in an event handler attached to the consolidator. Since you are using second-resolution data, your trades will be filled at that resolution.
Please checkout the docs, under Consolidating Data, for further explanation and code snippets.
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.
Noel Hernandez
So something like this for executing something every second but for hour trading ...
AddCrypto("BTCUSD", Resolution.Second, Market.GDAX);
var hourConsolidator= new TradeBarConsolidator(3600);
hourConsolidator.DataConsolidated += HourHandler;
SubscriptionManager.AddConsolidator(symbolData.Symbol, hourConsolidator);
var secondConsolidator= new TradeBarConsolidator(1);
secondConsolidator.DataConsolidated += SecondsHandler;
SubscriptionManager.AddConsolidator(symbolData.Symbol, secondConsolidator);
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
Yes and no.
Since you are subscribing to second-resolution data, the data will arrive OnData event handler, so you don't need to create the secondConsolidator.
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!