I'm trying to calculate the exponentially weighted rolling std of a time series using numpy. The equivalent in pandas would be pd.DataFrame(ts).ewm(...).std()
. What's the way to go?
Edit
Possible solution: https://pypi.org/project/numpy-ext/
where one could use npext.rolling_apply(...), apply weights on the rolling window and then do std().