Skip to content

Using resample_apply for indicators which require more than one column #440

Answered by kernc
ahfattahi asked this question in Q&A
Discussion options

You must be logged in to vote

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)

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by kernc
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants