-
Hello, Assume we have the hourly dataset of EURUSD.csv in the test section. I want to calculate the Stochastic Oscillator indicator in 4-hour steps. This indicator requires close, high, and low prices for each time step. I know I need to use |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
If you need to resample more than one column, you can pass in the whole dataframe instead of individual series: def stoch_wrapper(df):
import talib as ta
return ta.STOCH(df.High, df.Low, df.Close)
resample_apply('4H', stoch_wrapper, self.data.df) |
Beta Was this translation helpful? Give feedback.
-
Thank you so much, your solution worked perfectly. |
Beta Was this translation helpful? Give feedback.
If you need to resample more than one column, you can pass in the whole dataframe instead of individual series: