kurtosis#

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

Rolling Kurtosis

Sources:

Calculation:
Default Inputs:

length=30

KURTOSIS = close.rolling(length).kurt()

Args:

close (pd.Series): Series of ‘close’s length (int): It’s period. Default: 30 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.