Create Standard Deviation for Linear Regression #741
Labels
enhancement
New feature or request
good first issue
Good for newcomers
help wanted
Extra attention is needed
I needed to have standard deviation for linear regression and there was not function for it. so i coded it and if you like you can edit it and add to next version.
so we can now use it as:
df['stdlinreg'] = stdevlinreg(df['close'], length=15)
and if add to 'linreg' it can be like:
df['stdlinreg'] = ta.linreg(df['close'], length=15, stdev=True)
The text was updated successfully, but these errors were encountered: