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
-
IPersistableICloneable<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
ROCRSIPeriod
ROC RSI Period.
[Display(ResourceType = typeof(LocalizedStrings), Name = "ROCRSI", Description = "ROCRSIPeriod", GroupName = "General")]
public int ROCRSIPeriod { get; set; }
Property Value
RSIPeriod
RSI Period.
[Display(ResourceType = typeof(LocalizedStrings), Name = "RSI", Description = "RSIPeriod", GroupName = "General")]
public int RSIPeriod { get; set; }
Property Value
StreakRSIPeriod
Streak RSI Period.
[Display(ResourceType = typeof(LocalizedStrings), Name = "Streak", Description = "StreakRSIPeriod", GroupName = "General")]
public int StreakRSIPeriod { get; set; }
Property Value
Methods
OnProcess(IIndicatorValue)
To handle the input value.
protected override IIndicatorValue OnProcess(IIndicatorValue input)
Parameters
input
IIndicatorValueThe 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()