increasing#

API documentation for pandas_ta.trend.increasing Python function.

increasing(close, length=None, strict=None, asint=None, percent=None, drift=None, offset=None, **kwargs)[source]#

Increasing

Returns True if the series is increasing over a period, False otherwise. If the kwarg ‘strict’ is True, it returns True if it is continuously increasing over the period. When using the kwarg ‘asint’, then it returns 1 for True or 0 for False.

Calculation:
if strict:

increasing = all(i < j for i, j in zip(close[-length:], close[1:]))

else:

increasing = close.diff(length) > 0

if asint:

increasing = increasing.astype(int)

Args:

close (pd.Series): Series of ‘close’s length (int): It’s period. Default: 1 strict (bool): If True, checks if the series is continuously increasing over the period. Default: False percent (float): Percent as an integer. Default: None asint (bool): Returns as binary. Default: True 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.