RSI
#
RSI
#
RSI(
period: int,
input_values: List[float] = None,
input_indicator: Indicator = None,
input_modifier: InputModifierType = None,
input_sampling: SamplingPeriodType = None,
)
Bases: Indicator
Relative Strength Index.
Input type: float
Output type: float
Parameters:
Name | Type | Description | Default |
---|---|---|---|
period |
int
|
Period. |
required |
input_values |
List[float]
|
List of input values. |
None
|
input_indicator |
Indicator
|
Input indicator. |
None
|
input_modifier |
InputModifierType
|
Input modifier. |
None
|
input_sampling |
SamplingPeriodType
|
Input sampling type. |
None
|