forked from QuantConnect/Lean
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKeltnerChannels.cs
133 lines (115 loc) · 5.46 KB
/
KeltnerChannels.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/*
* QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals.
* Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
using QuantConnect.Data.Market;
namespace QuantConnect.Indicators
{
/// <summary>
/// This indicator creates a moving average (middle band) with an upper band and lower band
/// fixed at k average true range multiples away from the middle band.
/// </summary>
public class KeltnerChannels : BarIndicator, IIndicatorWarmUpPeriodProvider
{
private readonly decimal _k;
/// <summary>
/// Gets the middle band of the channel
/// </summary>
public IndicatorBase<IndicatorDataPoint> MiddleBand { get; }
/// <summary>
/// Gets the upper band of the channel
/// </summary>
public IndicatorBase<IBaseDataBar> UpperBand { get; }
/// <summary>
/// Gets the lower band of the channel
/// </summary>
public IndicatorBase<IBaseDataBar> LowerBand { get; }
/// <summary>
/// Gets the average true range
/// </summary>
public IndicatorBase<IBaseDataBar> AverageTrueRange { get; }
/// <summary>
/// Initializes a new instance of the KeltnerChannels class
/// </summary>
/// <param name="period">The period of the average true range and moving average (middle band)</param>
/// <param name="k">The number of multiplies specifying the distance between the middle band and upper or lower bands</param>
/// <param name="movingAverageType">The type of moving average to be used</param>
public KeltnerChannels(int period, decimal k, MovingAverageType movingAverageType = MovingAverageType.Simple)
: this($"KC({period},{k})", period, k, movingAverageType)
{
}
/// <summary>
/// Initializes a new instance of the KeltnerChannels class
/// </summary>
/// <param name="name">The name of this indicator</param>
/// <param name="period">The period of the average true range and moving average (middle band)</param>
/// <param name="k">The number of multiples specifying the distance between the middle band and upper or lower bands</param>
/// <param name="movingAverageType">The type of moving average to be used</param>
public KeltnerChannels(string name, int period, decimal k, MovingAverageType movingAverageType = MovingAverageType.Simple)
: base(name)
{
_k = k;
WarmUpPeriod = period;
//Initialise ATR and SMA
AverageTrueRange = new AverageTrueRange(name + "_AverageTrueRange", period, MovingAverageType.Simple);
MiddleBand = movingAverageType.AsIndicator(name + "_MiddleBand", period);
//Compute Lower Band
LowerBand = new FunctionalIndicator<IBaseDataBar>(name + "_LowerBand",
input => MiddleBand.IsReady ? MiddleBand - AverageTrueRange * _k : decimal.Zero,
lowerBand => MiddleBand.IsReady,
() => MiddleBand.Reset()
);
//Compute Upper Band
UpperBand = new FunctionalIndicator<IBaseDataBar>(name + "_UpperBand",
input => MiddleBand.IsReady ? MiddleBand + AverageTrueRange * _k : decimal.Zero,
upperBand => MiddleBand.IsReady,
() => MiddleBand.Reset()
);
}
/// <summary>
/// Gets a flag indicating when this indicator is ready and fully initialized
/// </summary>
public override bool IsReady => MiddleBand.IsReady && UpperBand.IsReady && LowerBand.IsReady && AverageTrueRange.IsReady;
/// <summary>
/// Required period, in data points, for the indicator to be ready and fully initialized.
/// </summary>
public int WarmUpPeriod { get; }
/// <summary>
/// Resets this indicator to its initial state
/// </summary>
public override void Reset()
{
AverageTrueRange.Reset();
MiddleBand.Reset();
UpperBand.Reset();
LowerBand.Reset();
base.Reset();
}
/// <summary>
/// Computes the next value for this indicator from the given state.
/// </summary>
/// <param name="input">The TradeBar to this indicator on this time step</param>
/// <returns>A new value for this indicator</returns>
protected override decimal ComputeNextValue(IBaseDataBar input)
{
AverageTrueRange.Update(input);
var typicalPrice = (input.High + input.Low + input.Close)/3m;
MiddleBand.Update(input.Time, typicalPrice);
// poke the upper/lower bands, they actually don't use the input, they compute
// based on the ATR and the middle band
LowerBand.Update(input);
UpperBand.Update(input);
return MiddleBand;
}
}
}