Lean  $LEAN_TAG$
OnNeck.cs
1 /*
2  * QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals.
3  * Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation.
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14 */
15 
16 using System;
18 
20 {
21  /// <summary>
22  /// On-Neck candlestick pattern indicator
23  /// </summary>
24  /// <remarks>
25  /// Must have:
26  /// - first candle: long black candle
27  /// - second candle: white candle with open below previous day low and close equal to previous day low
28  /// The meaning of "equal" is specified with SetCandleSettings
29  /// The returned value is negative(-1): on-neck is always bearish
30  /// The user should consider that on-neck is significant when it appears in a downtrend, while this function
31  /// does not consider it
32  /// </remarks>
33  public class OnNeck : CandlestickPattern
34  {
35  private readonly int _equalAveragePeriod;
36  private readonly int _bodyLongAveragePeriod;
37 
38  private decimal _equalPeriodTotal;
39  private decimal _bodyLongPeriodTotal;
40 
41  /// <summary>
42  /// Initializes a new instance of the <see cref="OnNeck"/> class using the specified name.
43  /// </summary>
44  /// <param name="name">The name of this indicator</param>
45  public OnNeck(string name)
46  : base(name, Math.Max(CandleSettings.Get(CandleSettingType.Equal).AveragePeriod, CandleSettings.Get(CandleSettingType.BodyLong).AveragePeriod) + 1 + 1)
47  {
48  _equalAveragePeriod = CandleSettings.Get(CandleSettingType.Equal).AveragePeriod;
49  _bodyLongAveragePeriod = CandleSettings.Get(CandleSettingType.BodyLong).AveragePeriod;
50  }
51 
52  /// <summary>
53  /// Initializes a new instance of the <see cref="OnNeck"/> class.
54  /// </summary>
55  public OnNeck()
56  : this("ONNECK")
57  {
58  }
59 
60  /// <summary>
61  /// Gets a flag indicating when this indicator is ready and fully initialized
62  /// </summary>
63  public override bool IsReady
64  {
65  get { return Samples >= Period; }
66  }
67 
68  /// <summary>
69  /// Computes the next value of this indicator from the given state
70  /// </summary>
71  /// <param name="window">The window of data held in this indicator</param>
72  /// <param name="input">The input given to the indicator</param>
73  /// <returns>A new value for this indicator</returns>
74  protected override decimal ComputeNextValue(IReadOnlyWindow<IBaseDataBar> window, IBaseDataBar input)
75  {
76  if (!IsReady)
77  {
78  if (Samples >= Period - _equalAveragePeriod)
79  {
80  _equalPeriodTotal += GetCandleRange(CandleSettingType.Equal, window[1]);
81  }
82 
83  if (Samples >= Period - _bodyLongAveragePeriod)
84  {
85  _bodyLongPeriodTotal += GetCandleRange(CandleSettingType.BodyLong, window[1]);
86  }
87 
88  return 0m;
89  }
90 
91  decimal value;
92  if (
93  // 1st: black
94  GetCandleColor(window[1]) == CandleColor.Black &&
95  // long
96  GetRealBody(window[1]) > GetCandleAverage(CandleSettingType.BodyLong, _bodyLongPeriodTotal, window[1]) &&
97  // 2nd: white
98  GetCandleColor(input) == CandleColor.White &&
99  // open below prior low
100  input.Open < window[1].Low &&
101  // close equal to prior low
102  input.Close <= window[1].Low + GetCandleAverage(CandleSettingType.Equal, _equalPeriodTotal, window[1]) &&
103  input.Close >= window[1].Low - GetCandleAverage(CandleSettingType.Equal, _equalPeriodTotal, window[1])
104  )
105  value = -1m;
106  else
107  value = 0m;
108 
109  // add the current range and subtract the first range: this is done after the pattern recognition
110  // when avgPeriod is not 0, that means "compare with the previous candles" (it excludes the current candle)
111 
112  _equalPeriodTotal += GetCandleRange(CandleSettingType.Equal, window[1]) -
113  GetCandleRange(CandleSettingType.Equal, window[_equalAveragePeriod + 1]);
114 
115  _bodyLongPeriodTotal += GetCandleRange(CandleSettingType.BodyLong, window[1]) -
116  GetCandleRange(CandleSettingType.BodyLong, window[_bodyLongAveragePeriod + 1]);
117 
118  return value;
119  }
120 
121  /// <summary>
122  /// Resets this indicator to its initial state
123  /// </summary>
124  public override void Reset()
125  {
126  _equalPeriodTotal = 0m;
127  _bodyLongPeriodTotal = 0m;
128  base.Reset();
129  }
130  }
131 }