While using the BBANDS function present in TA-Lib to generate upper, middle and lower band values for the close price column in my dataframe, it is returning me only a few rows that contain the respective values, whereas the majority of the rows have NaN values.
df = pd.read_csv("3131.csv", parse_dates=True, index_col="datetime")
df["upper_band"], df["middle_band"], df["lower_band"] = talib.BBANDS(df["close"], timeperiod=10)
Above is the function used to find the values for the respective bands and below are a few sample rows of my csv file.
datetime,open,high,low,close,volume
1996-01-01,15.859429,15.944529,15.754989,15.917452,48051995.0
1996-01-02,15.87877,15.956133,15.677626,15.793671,77875009.0
1996-01-03,16.052837,16.783918,15.87877,15.913584,96602936.0
1996-01-04,15.762726,15.813012,15.553845,15.766594,100099436.0
1996-01-05,15.704703,15.704703,15.5229,15.658285,76935930.0
1996-01-08,15.62734,15.638945,14.876918,15.031645,86288584.0
The first 9 rows are expected to have NaN values, but also after row 1900, all the rows have NaN values. Is there any way that I can compute the BBAND values for all the rows together at once?
I think that the problem is in your CSV file (there may be missing values). Bollinger bands are calculated with SMA (simple moving average), so it is calculated in a sliding period. According to your
timeperiod
(e.g. 20 days, 10 days) configuration, it calculates. If your time period is 10 days, it cannot calculate the first 9 days as expected. You can also check it (by usingdata.iloc[9]
=> 10th day, BBAND calculated; butdata.iloc[8]
=> 9th day, BBAND isNaN
),Bolling Band (BBAND) Formula (time-period: 20 days):
Ref: https://school.stockcharts.com/doku.php?id=technical_indicators:bollinger_bands
The following code works after getting data using
yfinance
:Code:
Output: