Table of Contents

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

PivotPointPart

R1

Resistance level R1.

[Browsable(false)]
public PivotPointPart R1 { get; }

Property Value

PivotPointPart

R2

Resistance level R2.

[Browsable(false)]
public PivotPointPart R2 { get; }

Property Value

PivotPointPart

S1

Support level S1.

[Browsable(false)]
public PivotPointPart S1 { get; }

Property Value

PivotPointPart

S2

Support level S2.

[Browsable(false)]
public PivotPointPart S2 { get; }

Property Value

PivotPointPart

Methods

CreateValue(DateTimeOffset)

protected override PivotPointsValue CreateValue(DateTimeOffset time)

Parameters

time DateTimeOffset

Time

Returns

PivotPointsValue

PivotPointsValue

OnProcess(IIndicatorValue)

To handle the input value.

protected override IIndicatorValue OnProcess(IIndicatorValue input)

Parameters

input IIndicatorValue

The input value.

Returns

IIndicatorValue

The resulting value.