Sorry for the newbie question.
How do I use CandleSettingType Enumeration? (See the link to Lean):
http://www.quantconnect.com/lean/docs#topic7489.html
Plus, is there a way to change those default paramaters?
QUANTCONNECT COMMUNITY
Sorry for the newbie question.
How do I use CandleSettingType Enumeration? (See the link to Lean):
http://www.quantconnect.com/lean/docs#topic7489.html
Plus, is there a way to change those default paramaters?
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.
Boris Sachakov
Sorry. Wrong link above. Here's the right one:
https://www.quantconnect.com/lean/docs#topic7230.html
Stefano Raggi
@Boris,
The CandleSettingType enum is used internally by the CandlestickPattern indicators,
global default settings are defined here:
https://github.com/QuantConnect/Lean/blob/master/Indicators/CandlestickPatterns/CandleSettings.cs#L28
They can be changed at runtime by calling the CandleSettings.Set method in the algorithm Initialize method, before creating the pattern indicators, for example:
CandleSettings.Set(CandleSettingType.BodyLong, new CandleSetting(CandleRangeType.RealBody, 20, 1));
Please keep in mind that a setting change with the line above is global and will be applied to all candlestick patterns used in the algorithm.
To better understand how these settings are used, I suggest to read the source code for the patterns:
https://github.com/QuantConnect/Lean/tree/master/Indicators/CandlestickPatterns
especially the base class:
https://github.com/QuantConnect/Lean/blob/master/Indicators/CandlestickPatterns/CandlestickPattern.cs
Boris Sachakov
Thanks for your response.
Boris Sachakov
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!