RSIFunction is a
Line Series derived component that calculates a percent value based on Financial data.
RSIFunction must be connected to a
OHLC Series or any derived Series component (e.g.
Candle). Like a
MovingAverage Function, RSI will calculate a new point Y value by using previous Period points.
The used formula is:
Add all Close prices greater than Open prices and divide by ocurrences (Ups).
Add all Close prices lower than Open prices and divide by ocurrences (Downs).
RSI = 100.0 - ( 100.0 / ( 1.0 + Math.Abs( Ups / Downs ) ) )
To see a visual representation of TeeChart Extended Functions, go to the TeeChart User Guide.
For a list of all members of this type, see RSIFunction Members
System.Object
System.MarshalByRefObject
System.ComponentModel.Component
Steema.TeeChart.Drawing.TeeBase Steema.TeeChart.Functions.Function Steema.TeeChart.Functions.Movingpublic class RSIFunction : Moving , IComponent, IDisposable
Requirements
Namespace: Steema.TeeChart.Functions Namespace
Assembly: TeeChart.dll
See Also
RSIFunction members | Steema.TeeChart.Functions Namespace