Python-for-Data-Science
Python-for-Data-Science copied to clipboard
A blog for data analytics using data science technologies
Results
1
Python-for-Data-Science issues
Sort by
recently updated
recently updated
newest added
Inside Bollinger Bands Tutorial.py, there's some minor rework required. item[’30 Day STD’] = item[‘Adj Close’].rolling(window=20).std() should become item[’30 Day STD’] = item[‘Adj Close’].rolling(window=20).std(ddof=0) (this is because the standard deviation is...