214 lines
9.4 KiB
C#
214 lines
9.4 KiB
C#
/*
|
|
* 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;
|
|
using System;
|
|
|
|
namespace QuantConnect.Indicators
|
|
{
|
|
/// <summary>
|
|
/// This indicator computes the Ichimoku Kinko Hyo indicator. It consists of the following main indicators:
|
|
/// Tenkan-sen: (Highest High + Lowest Low) / 2 for the specific period (normally 9)
|
|
/// Kijun-sen: (Highest High + Lowest Low) / 2 for the specific period (normally 26)
|
|
/// Senkou A Span: (Tenkan-sen + Kijun-sen )/ 2 from a specific number of periods ago (normally 26)
|
|
/// Senkou B Span: (Highest High + Lowest Low) / 2 for the specific period (normally 52), from a specific number of periods ago (normally 26)
|
|
/// </summary>
|
|
public class IchimokuKinkoHyo : BarIndicator, IIndicatorWarmUpPeriodProvider
|
|
{
|
|
/// <summary>
|
|
/// The Tenkan-sen component of the Ichimoku indicator
|
|
/// </summary>
|
|
public IndicatorBase<IndicatorDataPoint> Tenkan { get; }
|
|
|
|
/// <summary>
|
|
/// The Kijun-sen component of the Ichimoku indicator
|
|
/// </summary>
|
|
public IndicatorBase<IndicatorDataPoint> Kijun { get; }
|
|
|
|
/// <summary>
|
|
/// The Senkou A Span component of the Ichimoku indicator
|
|
/// </summary>
|
|
public IndicatorBase<IndicatorDataPoint> SenkouA { get; }
|
|
|
|
/// <summary>
|
|
/// The Senkou B Span component of the Ichimoku indicator
|
|
/// </summary>
|
|
public IndicatorBase<IndicatorDataPoint> SenkouB { get; }
|
|
|
|
/// <summary>
|
|
/// The Chikou Span component of the Ichimoku indicator
|
|
/// </summary>
|
|
public IndicatorBase<IndicatorDataPoint> Chikou { get; }
|
|
|
|
/// <summary>
|
|
/// The Tenkan-sen Maximum component of the Ichimoku indicator
|
|
/// </summary>
|
|
public IndicatorBase<IndicatorDataPoint> TenkanMaximum { get; }
|
|
|
|
/// <summary>
|
|
/// The Tenkan-sen Minimum component of the Ichimoku indicator
|
|
/// </summary>
|
|
public IndicatorBase<IndicatorDataPoint> TenkanMinimum { get; }
|
|
|
|
/// <summary>
|
|
/// The Kijun-sen Maximum component of the Ichimoku indicator
|
|
/// </summary>
|
|
public IndicatorBase<IndicatorDataPoint> KijunMaximum { get; }
|
|
|
|
/// <summary>
|
|
/// The Kijun-sen Minimum component of the Ichimoku indicator
|
|
/// </summary>
|
|
public IndicatorBase<IndicatorDataPoint> KijunMinimum { get; }
|
|
|
|
/// <summary>
|
|
/// The Senkou B Maximum component of the Ichimoku indicator
|
|
/// </summary>
|
|
public IndicatorBase<IndicatorDataPoint> SenkouBMaximum { get; }
|
|
|
|
/// <summary>
|
|
/// The Senkou B Minimum component of the Ichimoku indicator
|
|
/// </summary>
|
|
public IndicatorBase<IndicatorDataPoint> SenkouBMinimum { get; }
|
|
|
|
/// <summary>
|
|
/// The Delayed Tenkan Senkou A component of the Ichimoku indicator
|
|
/// </summary>
|
|
public WindowIndicator<IndicatorDataPoint> DelayedTenkanSenkouA { get; }
|
|
|
|
/// <summary>
|
|
/// The Delayed Kijun Senkou A component of the Ichimoku indicator
|
|
/// </summary>
|
|
public WindowIndicator<IndicatorDataPoint> DelayedKijunSenkouA { get; }
|
|
|
|
/// <summary>
|
|
/// The Delayed Maximum Senkou B component of the Ichimoku indicator
|
|
/// </summary>
|
|
public WindowIndicator<IndicatorDataPoint> DelayedMaximumSenkouB { get; }
|
|
|
|
/// <summary>
|
|
/// The Delayed Minimum Senkou B component of the Ichimoku indicator
|
|
/// </summary>
|
|
public WindowIndicator<IndicatorDataPoint> DelayedMinimumSenkouB { get; }
|
|
|
|
/// <summary>
|
|
/// Creates a new IchimokuKinkoHyo indicator from the specific periods
|
|
/// </summary>
|
|
/// <param name="tenkanPeriod">The Tenkan-sen period</param>
|
|
/// <param name="kijunPeriod">The Kijun-sen period</param>
|
|
/// <param name="senkouAPeriod">The Senkou A Span period</param>
|
|
/// <param name="senkouBPeriod">The Senkou B Span period</param>
|
|
/// <param name="senkouADelayPeriod">The Senkou A Span delay</param>
|
|
/// <param name="senkouBDelayPeriod">The Senkou B Span delay</param>
|
|
public IchimokuKinkoHyo(int tenkanPeriod = 9, int kijunPeriod = 26, int senkouAPeriod = 26,
|
|
int senkouBPeriod = 52, int senkouADelayPeriod = 26, int senkouBDelayPeriod = 26)
|
|
: this(
|
|
$"ICHIMOKU({tenkanPeriod},{kijunPeriod},{senkouAPeriod},{senkouBPeriod},{senkouADelayPeriod},{senkouBDelayPeriod})",
|
|
tenkanPeriod,
|
|
kijunPeriod,
|
|
senkouAPeriod,
|
|
senkouBPeriod,
|
|
senkouADelayPeriod,
|
|
senkouBDelayPeriod
|
|
)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a new IchimokuKinkoHyo indicator from the specific periods
|
|
/// </summary>
|
|
/// <param name="name">The name of this indicator</param>
|
|
/// <param name="tenkanPeriod">The Tenkan-sen period</param>
|
|
/// <param name="kijunPeriod">The Kijun-sen period</param>
|
|
/// <param name="senkouAPeriod">The Senkou A Span period</param>
|
|
/// <param name="senkouBPeriod">The Senkou B Span period</param>
|
|
/// <param name="senkouADelayPeriod">The Senkou A Span delay</param>
|
|
/// <param name="senkouBDelayPeriod">The Senkou B Span delay</param>
|
|
public IchimokuKinkoHyo(string name, int tenkanPeriod = 9, int kijunPeriod = 26, int senkouAPeriod = 26, int senkouBPeriod = 52, int senkouADelayPeriod = 26, int senkouBDelayPeriod = 26)
|
|
: base(name)
|
|
{
|
|
WarmUpPeriod = Math.Max(tenkanPeriod + senkouADelayPeriod, kijunPeriod + senkouADelayPeriod);
|
|
WarmUpPeriod = Math.Max(WarmUpPeriod, senkouBPeriod + senkouBDelayPeriod);
|
|
|
|
TenkanMaximum = new Maximum(name + "_TenkanMax", tenkanPeriod);
|
|
TenkanMinimum = new Minimum(name + "_TenkanMin", tenkanPeriod);
|
|
KijunMaximum = new Maximum(name + "_KijunMax", kijunPeriod);
|
|
KijunMinimum = new Minimum(name + "_KijunMin", kijunPeriod);
|
|
SenkouBMaximum = new Maximum(name + "_SenkouBMaximum", senkouBPeriod);
|
|
SenkouBMinimum = new Minimum(name + "_SenkouBMinimum", senkouBPeriod);
|
|
DelayedMaximumSenkouB = new Delay(name + "DelayedMax", senkouBDelayPeriod).Of(SenkouBMaximum);
|
|
DelayedMinimumSenkouB = new Delay(name + "DelayedMin", senkouBDelayPeriod).Of(SenkouBMinimum);
|
|
|
|
Tenkan = TenkanMaximum.Plus(TenkanMinimum).Over(2m);
|
|
DelayedTenkanSenkouA = new Delay(name + "DelayedTenkan", senkouADelayPeriod).Of(Tenkan);
|
|
|
|
Kijun = KijunMaximum.Plus(KijunMinimum).Over(2m);
|
|
DelayedKijunSenkouA = new Delay(name + "DelayedKijun", senkouADelayPeriod).Of(Kijun);
|
|
|
|
SenkouA = DelayedTenkanSenkouA.Plus(DelayedKijunSenkouA).Over(2m);
|
|
SenkouB = DelayedMaximumSenkouB.Plus(DelayedMinimumSenkouB).Over(2m);
|
|
Chikou = new Delay(name + "_Chikou", senkouADelayPeriod);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns true if all of the sub-components of the Ichimoku indicator is ready
|
|
/// </summary>
|
|
public override bool IsReady => Tenkan.IsReady && Kijun.IsReady && SenkouA.IsReady && SenkouB.IsReady;
|
|
|
|
/// <summary>
|
|
/// Required period, in data points, for the indicator to be ready and fully initialized.
|
|
/// </summary>
|
|
public int WarmUpPeriod { get; }
|
|
|
|
/// <summary>
|
|
/// Computes the next value of this indicator from the given state
|
|
/// </summary>
|
|
/// <param name="input">The input given to the indicator</param>
|
|
protected override decimal ComputeNextValue(IBaseDataBar input)
|
|
{
|
|
TenkanMaximum.Update(input.EndTime, input.High);
|
|
TenkanMinimum.Update(input.EndTime, input.Low);
|
|
KijunMaximum.Update(input.EndTime, input.High);
|
|
KijunMinimum.Update(input.EndTime, input.Low);
|
|
SenkouBMaximum.Update(input.EndTime, input.High);
|
|
SenkouBMinimum.Update(input.EndTime, input.Low);
|
|
Chikou.Update(input.EndTime, input.Close);
|
|
|
|
return input.Close;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Resets this indicator to its initial state
|
|
/// </summary>
|
|
public override void Reset()
|
|
{
|
|
base.Reset();
|
|
TenkanMaximum.Reset();
|
|
TenkanMinimum.Reset();
|
|
Tenkan.Reset();
|
|
KijunMaximum.Reset();
|
|
KijunMinimum.Reset();
|
|
Kijun.Reset();
|
|
DelayedTenkanSenkouA.Reset();
|
|
DelayedKijunSenkouA.Reset();
|
|
SenkouA.Reset();
|
|
SenkouBMaximum.Reset();
|
|
SenkouBMinimum.Reset();
|
|
DelayedMaximumSenkouB.Reset();
|
|
DelayedMinimumSenkouB.Reset();
|
|
Chikou.Reset();
|
|
SenkouB.Reset();
|
|
}
|
|
}
|
|
} |