StochRSI
#
StochRSI
#
StochRSI(
rsi_period: int,
stoch_period: int,
k_smoothing_period: int,
d_smoothing_period: int,
input_values: List[float] = None,
input_indicator: Indicator = None,
input_modifier: InputModifierType = None,
ma_type: MAType = MAType.SMA,
input_sampling: SamplingPeriodType = None,
)
Bases: Indicator
Stochastic RSI.
Input type: float
Output type: StochRSIVal
Parameters:
Name | Type | Description | Default |
---|---|---|---|
rsi_period |
int
|
RSI period. |
required |
stoch_period |
int
|
Stoch period. |
required |
k_smoothing_period |
int
|
Stoch's |
required |
d_smoothing_period |
int
|
Stoch's |
required |
input_values |
List[float]
|
List of input values. |
None
|
input_indicator |
Indicator
|
Input indicator. |
None
|
input_modifier |
InputModifierType
|
Input modifier. |
None
|
ma_type |
MAType
|
Moving average type. |
SMA
|
input_sampling |
SamplingPeriodType
|
Input sampling type. |
None
|