mirror of
https://github.com/wassname/pandas-ta.git
synced 2026-06-27 16:10:07 +08:00
57 lines
1.4 KiB
Python
57 lines
1.4 KiB
Python
# -*- coding: utf-8 -*-
|
|
from ..overlap.sma import sma
|
|
from .stdev import stdev
|
|
from ..utils import get_offset, verify_series
|
|
|
|
|
|
def zscore(close, length=None, std=None, offset=None, **kwargs):
|
|
"""Indicator: Z Score"""
|
|
# Validate Arguments
|
|
close = verify_series(close)
|
|
length = int(length) if length and length > 1 else 30
|
|
std = float(std) if std and std > 1 else 1
|
|
offset = get_offset(offset)
|
|
|
|
# Calculate Result
|
|
std *= stdev(close=close, length=length, **kwargs)
|
|
mean = sma(close=close, length=length, **kwargs)
|
|
zscore = (close - mean) / std
|
|
|
|
# Offset
|
|
if offset != 0:
|
|
zscore = zscore.shift(offset)
|
|
|
|
# Name & Category
|
|
zscore.name = f"Z_{length}"
|
|
zscore.category = "statistics"
|
|
|
|
return zscore
|
|
|
|
|
|
zscore.__doc__ = """Rolling Z Score
|
|
|
|
Sources:
|
|
|
|
Calculation:
|
|
Default Inputs:
|
|
length=30, std=1
|
|
SMA = Simple Moving Average
|
|
STDEV = Standard Deviation
|
|
std = std * STDEV(close, length)
|
|
mean = SMA(close, length)
|
|
ZSCORE = (close - mean) / std
|
|
|
|
Args:
|
|
close (pd.Series): Series of 'close's
|
|
length (int): It's period. Default: 30
|
|
std (float): It's 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.
|
|
"""
|