Skip to content

Superimposed Charts #467

Answered by kernc
kaleming asked this question in Q&A
Sep 17, 2021 · 3 comments · 4 replies
Discussion options

You must be logged in to vote

You could, e.g., resample original df to '3T' (3 min) and pass bt.plot(..., superimpose='15T')?

Other than that, you could roll as many as you want of your own line indicators:

        ...
        def resample(period, df):
            return df.Open.resample(period).first(), df.Close.resample(period).last()
        self.resampled15t = self.I(resample, '15T', self.data.df, overlay=True)
        ...

Replies: 3 comments 4 replies

Comment options

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

You must be logged in to vote
1 reply
@kernc
Comment options

Comment options

You must be logged in to vote
3 replies
@kaleming
Comment options

@kernc
Comment options

@kaleming
Comment options

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