Lean  $LEAN_TAG$
VolumeWeightedMovingAverage.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 
17 
19 {
20  /// <summary>
21  /// This indicator computes the Volume Weighted Moving Average (VWMA)
22  /// It is a technical analysis indicator used by traders to determine the average price of an asset over a given period of time,
23  /// taking into account both price and volume.
24  /// </summary>
26  {
27 
28  private readonly IndicatorBase<IndicatorDataPoint> _rollingSumPriceMultipliedByVolume;
29  private readonly IndicatorBase<IndicatorDataPoint> _rollingSumVolume;
30 
31  /// <summary>
32  /// Required period, in data points, for the indicator to be ready and fully initialized.
33  /// </summary>
34  public int WarmUpPeriod { get; }
35 
36  /// <summary>
37  /// Gets a flag indicating when this indicator is ready and fully initialized
38  /// </summary>
39  public override bool IsReady => _rollingSumPriceMultipliedByVolume.IsReady && _rollingSumVolume.IsReady;
40  /// <summary>
41  /// Initializes a new instance of the <see cref="VolumeWeightedMovingAverage"/> class using the specified name.
42  /// </summary>
43  /// <param name="name">The name of this indicator</param>
44  /// <param name="period">The period of the SMA</param>
45  public VolumeWeightedMovingAverage(string name, int period)
46  : base(name)
47  {
48  WarmUpPeriod = period;
49  _rollingSumPriceMultipliedByVolume = new Sum(name + "_SumPxV", period);
50  _rollingSumVolume = new Sum(name + "_SumVolume", period);
51  }
52 
53  /// <summary>
54  /// Initializes a new instance of the <see cref="VolumeWeightedMovingAverage"/> class using the specified name.
55  /// </summary>
56  /// <param name="period">The period of the SMA</param>
57  public VolumeWeightedMovingAverage(int period)
58  : this($"VWMA({period})", period)
59  {
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(TradeBar input)
68  {
69  _rollingSumPriceMultipliedByVolume.Update(input.Time, input.Close * input.Volume);
70  _rollingSumVolume.Update(input.Time, input.Volume);
71  var sumVolume = _rollingSumVolume.Current.Value;
72  if (sumVolume != 0)
73  {
74  return _rollingSumPriceMultipliedByVolume.Current.Value / sumVolume;
75  }
76  return input.Close;
77  }
78 
79  /// <summary>
80  /// Resets this indicator to its initial state
81  /// </summary>
82  public override void Reset()
83  {
84  _rollingSumPriceMultipliedByVolume.Reset();
85  _rollingSumVolume.Reset();
86  base.Reset();
87  }
88 
89  }
90 }