Lean  $LEAN_TAG$
RogersSatchellVolatility.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  /// This indicator computes the Rogers-Satchell Volatility
23  /// It is an estimator for measuring the volatility of securities
24  /// with an average return not equal to zero.
25  /// </summary>
27  {
28  private readonly int _period;
29  private readonly IndicatorBase<IndicatorDataPoint> _rollingSum;
30 
31  /// <summary>
32  /// Gets a flag indicating when this indicator is ready and fully initialized
33  /// </summary>
34  public override bool IsReady => Samples >= _period;
35 
36  /// <summary>
37  /// Required period, in data points, for the indicator to be ready and fully initialized.
38  /// </summary>
39  public int WarmUpPeriod => _period;
40 
41  /// <summary>
42  /// Initializes a new instance of the <see cref="RogersSatchellVolatility"/> class using the specified parameters
43  /// </summary>
44  /// <param name="period">The period of moving window</param>
45  public RogersSatchellVolatility(int period)
46  : this($"RSV({period})", period)
47  {
48  }
49 
50  /// <summary>
51  /// Initializes a new instance of the <see cref="RogersSatchellVolatility"/> class using the specified parameters
52  /// </summary>
53  /// <param name="name">The name of this indicator</param>
54  /// <param name="period">The period of moving window</param>
55  public RogersSatchellVolatility(string name, int period)
56  : base(name)
57  {
58  _period = period;
59  _rollingSum = new Sum(name + "_Sum", period);
60  }
61 
62  /// <summary>
63  /// Computes the next value of this indicator from the given state
64  /// </summary>
65  /// <param name="input">The input given to the indicator</param>
66  /// <returns>A new value for this indicator</returns>
67  protected override decimal ComputeNextValue(IBaseDataBar input)
68  {
69  if ((input.Open == 0) || (input.High == 0) || (input.Low == 0) || (input.Close == 0))
70  {
71  // return a sentinel value
72  return 0m;
73  }
74 
75  _rollingSum.Update(input.EndTime, (decimal)
76  (Math.Log((double)input.High / (double)input.Close) * Math.Log((double)input.High / (double)input.Open)
77  + Math.Log((double)input.Low / (double)input.Close) * Math.Log((double)input.Low / (double)input.Open))
78  );
79 
80  if (IsReady)
81  {
82  return (decimal)Math.Sqrt(((double)_rollingSum.Current.Value) / _period);
83  }
84  else
85  {
86  return 0m;
87  }
88  }
89 
90  /// <summary>
91  /// Resets this indicator to its initial state
92  /// </summary>
93  public override void Reset()
94  {
95  _rollingSum.Reset();
96  base.Reset();
97  }
98  }
99 }