I am trying to make a simple change to the 1/n algorithm that was posted last week. I simply want to change the trade frequency to a defined number of days, rather than each new month. With limited skills in programming I've made attempts at coding trade frequency in days without success. Attached are my changes - trying to trade every 61 days. Any direction or help is appreciated.
Regarding this forum, community and tools you all have set up. It is amazing to see the work that has been done here. It is truly creating change and will help step the industry in a new direction.
Geoff L
Project here...
Alexandre Catarino
In order to trade only at of after days that occur with a given frequency, we can compare the QCAlgorithm.Time object with a previously defined DateTime object to decide whether is a date we will trade:
public void OnData(TradeBars data) { if (Time > nextDate) { /* Other trading logic here */ nextDate = nextDate.AddDays(period); } }
Geoff L
Geoff L
One more question, is there any existing code examples that work to limit trade size? For example if I want to maintain a minimum trade size of $1000 in your frequency example above. I have searched through the documentation and posts and so far have not found any discussion on trade size.
Alexandre Catarino
For minimum trade volume, we need to calculate the correspondent quantity for the security price for that volume, take the maximum from it and another quantity (if we have defined it) and submit the order:
# In OnData: var price = data["SPY"].Price; var minTradeQuantity = 1 + (int)(targetTradeVolume / price); // Logic to calculate the quantity, // let's use a fixed value of 1 var quantity = 1; // Get the maximum of calculated and minimum quantity quantity = Math.Max(quantity, minTradeQuantity); // Submit the order Order("SPY", quantity);
Geoff L
Geoff L
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!