Table of Contents

Class ConnorsRSI

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

Connors RSI (CRSI) indicator.

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

Constructors

ConnorsRSI()

Initializes a new instance of the ConnorsRSI.

public ConnorsRSI()

Properties

Measure

public override IndicatorMeasures Measure { get; }

Property Value

IndicatorMeasures

ROCRSIPeriod

ROC RSI Period.

[Display(ResourceType = typeof(LocalizedStrings), Name = "ROCRSI", Description = "ROCRSIPeriod", GroupName = "General")]
public int ROCRSIPeriod { get; set; }

Property Value

int

RSIPeriod

RSI Period.

[Display(ResourceType = typeof(LocalizedStrings), Name = "RSI", Description = "RSIPeriod", GroupName = "General")]
public int RSIPeriod { get; set; }

Property Value

int

StreakRSIPeriod

Streak RSI Period.

[Display(ResourceType = typeof(LocalizedStrings), Name = "Streak", Description = "StreakRSIPeriod", GroupName = "General")]
public int StreakRSIPeriod { get; set; }

Property Value

int

Methods

OnProcess(IIndicatorValue)

To handle the input value.

protected override IIndicatorValue OnProcess(IIndicatorValue input)

Parameters

input IIndicatorValue

The input value.

Returns

IIndicatorValue

The resulting value.

Reset()

To reset the indicator status to initial. The method is called each time when initial settings are changed (for example, the length of period).

public override void Reset()