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
-
IPersistableICloneable<IIndicator>
- Derived
- 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
AlligatorAlligator.
histogram1
GatorHistogramTop histogram.
histogram2
GatorHistogramLower histogram.
Properties
Histogram1
Top histogram.
[TypeConverter(typeof(ExpandableObjectConverter))]
[Display(ResourceType = typeof(LocalizedStrings), Name = "Up", Description = "TopHistogram", GroupName = "General")]
public GatorHistogram Histogram1 { get; }
Property Value
Histogram2
Lower histogram.
[TypeConverter(typeof(ExpandableObjectConverter))]
[Display(ResourceType = typeof(LocalizedStrings), Name = "Down", Description = "LowHistogram", GroupName = "General")]
public GatorHistogram Histogram2 { get; }
Property Value
Measure
public override IndicatorMeasures Measure { get; }
Property Value
Methods
CalcIsFormed()
Calc IsFormed.
protected override bool CalcIsFormed()
Returns
OnProcess(IIndicatorValue)
To handle the input value.
protected override IIndicatorValue OnProcess(IIndicatorValue input)
Parameters
input
IIndicatorValueThe input value.
Returns
- IIndicatorValue
The resulting value.