rsx#

rsx(close, length=None, drift=None, offset=None, **kwargs)[source]#

Relative Strength Xtra (rsx)

The Relative Strength Xtra is based on the popular RSI indicator and inspired by the work Jurik Research. The code implemented is based on published code found at ‘prorealcode.com’. This enhanced version of the rsi reduces noise and provides a clearer, only slightly delayed insight on momentum and velocity of price movements.

Sources:

http://www.jurikres.com/catalog1/ms_rsx.htm https://www.prorealcode.com/prorealtime-indicators/jurik-rsx/

Calculation:

Refer to the sources above for information as well as code example.

Args:

close (pd.Series): Series of ‘close’s length (int): It’s period. Default: 14 drift (int): The difference period. Default: 1 offset (int): How many periods to offset the result. Default: 0

Kwargs:

fillna (value, optional): pd.DataFrame.fillna(value) fill_method (value, optional): Type of fill method

Returns:

pd.Series: New feature generated.