Table of Contents

Class GatorOscillator

Namespace
StockSharp.Algo.Indicators
Assembly
StockSharp.Algo.dll

Gator oscillator.

[Display(ResourceType = typeof(LocalizedStrings), Name = "Gator", Description = "GatorOscillator")]
public class GatorOscillator : BaseComplexIndicator, IComplexIndicator, IIndicator, IPersistable, ICloneable<IIndicator>, ICloneable
Inheritance
GatorOscillator
Implements
IPersistable
ICloneable<IIndicator>
Inherited Members
Extension Methods

Remarks

Constructors

GatorOscillator()

Initializes a new instance of the GatorOscillator.

public GatorOscillator()

GatorOscillator(Alligator, GatorHistogram, GatorHistogram)

Initializes a new instance of the GatorOscillator.

public GatorOscillator(Alligator alligator, GatorHistogram histogram1, GatorHistogram histogram2)

Parameters

alligator Alligator

Alligator.

histogram1 GatorHistogram

Top histogram.

histogram2 GatorHistogram

Lower histogram.

Properties

Histogram1

Top histogram.

[TypeConverter(typeof(ExpandableObjectConverter))]
[Display(ResourceType = typeof(LocalizedStrings), Name = "Up", Description = "TopHistogram", GroupName = "General")]
public GatorHistogram Histogram1 { get; }

Property Value

GatorHistogram

Histogram2

Lower histogram.

[TypeConverter(typeof(ExpandableObjectConverter))]
[Display(ResourceType = typeof(LocalizedStrings), Name = "Down", Description = "LowHistogram", GroupName = "General")]
public GatorHistogram Histogram2 { get; }

Property Value

GatorHistogram

Measure

public override IndicatorMeasures Measure { get; }

Property Value

IndicatorMeasures

Methods

CalcIsFormed()

Calc IsFormed.

protected override bool CalcIsFormed()

Returns

bool

IsFormed

OnProcess(IIndicatorValue)

To handle the input value.

protected override IIndicatorValue OnProcess(IIndicatorValue input)

Parameters

input IIndicatorValue

The input value.

Returns

IIndicatorValue

The resulting value.