Class PivotPoints
- Namespace
- StockSharp.Algo.Indicators
- Assembly
- StockSharp.Algo.dll
Pivot Points indicator.
[Display(ResourceType = typeof(LocalizedStrings), Name = "PP", Description = "PivotPoints")]
[IndicatorIn(typeof(CandleIndicatorValue))]
[Doc("topics/api/indicators/list_of_indicators/pivot_points.html")]
[IndicatorOut(typeof(PivotPointsValue))]
public class PivotPoints : BaseComplexIndicator<PivotPointsValue>, IComplexIndicator, IIndicator, IPersistable, ICloneable<IIndicator>, ICloneable
- Inheritance
-
PivotPoints
- Implements
- Derived
- Inherited Members
- Extension Methods
Constructors
PivotPoints()
Initializes a new instance of the PivotPoints.
public PivotPoints()
Properties
PivotPoint
Pivot point.
[Browsable(false)]
public PivotPointPart PivotPoint { get; }
Property Value
R1
Resistance level R1.
[Browsable(false)]
public PivotPointPart R1 { get; }
Property Value
R2
Resistance level R2.
[Browsable(false)]
public PivotPointPart R2 { get; }
Property Value
S1
Support level S1.
[Browsable(false)]
public PivotPointPart S1 { get; }
Property Value
S2
Support level S2.
[Browsable(false)]
public PivotPointPart S2 { get; }
Property Value
Methods
CreateValue(DateTimeOffset)
Create PivotPointsValue.
protected override PivotPointsValue CreateValue(DateTimeOffset time)
Parameters
time
DateTimeOffset
Returns
OnProcess(IIndicatorValue)
To handle the input value.
protected override IIndicatorValue OnProcess(IIndicatorValue input)
Parameters
input
IIndicatorValueThe input value.
Returns
- IIndicatorValue
The resulting value.