/// <summary> /// Computes the next value of this indicator from the given state /// </summary> /// <param name="input">The input given to the indicator</param> /// <returns>A new value for this indicator</returns> protected override decimal ComputeNextValue(TradeBar input) { Minimum.Update(input.Time, input.Low); Maximum.Update(input.Time, input.High); if (!this.IsReady) { return(0); } var range = (Maximum.Current.Value - Minimum.Current.Value); return(range == 0 ? 0 : -100m * (Maximum.Current.Value - input.Close) / range); }
/// <summary> /// Creates a new AroonOscillator from the specified up/down periods. /// </summary> /// <param name="name">The name of this indicator</param> /// <param name="upPeriod">The lookback period to determine the highest high for the AroonDown</param> /// <param name="downPeriod">The lookback period to determine the lowest low for the AroonUp</param> public AroonOscillator(string name, int upPeriod, int downPeriod) : base(name) { var max = new Maximum(name + "_Max", upPeriod + 1); AroonUp = new FunctionalIndicator <IndicatorDataPoint>(name + "_AroonUp", input => ComputeAroonUp(upPeriod, max, input), aroonUp => max.IsReady, () => max.Reset() ); var min = new Minimum(name + "_Min", downPeriod + 1); AroonDown = new FunctionalIndicator <IndicatorDataPoint>(name + "_AroonDown", input => ComputeAroonDown(downPeriod, min, input), aroonDown => min.IsReady, () => min.Reset() ); }
/// <summary> /// Initializes a new instance of the <see cref="DonchianChannel"/> class. /// </summary> /// <param name="name">The name.</param> /// <param name="upperPeriod">The period for the upper channel.</param> /// <param name="lowerPeriod">The period for the lower channel</param> public DonchianChannel(string name, int upperPeriod, int lowerPeriod) : base(name) { UpperBand = new Maximum(name + "_UpperBand", upperPeriod); LowerBand = new Minimum(name + "_LowerBand", lowerPeriod); }
/// <summary> /// Resets this indicator and both sub-indicators (Max and Min) /// </summary> public override void Reset() { Maximum.Reset(); Minimum.Reset(); base.Reset(); }
/// <summary> /// Creates a new Williams %R. /// </summary> /// <param name="name">The name of this indicator</param> /// <param name="period">The lookback period to determine the highest high for the AroonDown</param> public WilliamsPercentR(string name, int period) : base(name) { Maximum = new Maximum(name + "_Max", period); Minimum = new Minimum(name + "_Min", period); }
/// <summary> /// AroonUp = 100 * (period - {periods since max})/period /// </summary> /// <param name="upPeriod">The AroonUp period</param> /// <param name="max">A Maximum indicator used to compute periods since max</param> /// <param name="input">The next input data</param> /// <returns>The AroonUp value</returns> private static decimal ComputeAroonUp(int upPeriod, Maximum max, IndicatorDataPoint input) { max.Update(input); return(100m * (upPeriod - max.PeriodsSinceMaximum) / upPeriod); }