-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
why my ohlcv dataframe interval is 15min, but in ploting, the candle bar interval is 2h? #997
Answered
by
eervin123
peilinnnnnn
asked this question in
Q&A
-
image
As the screenshot shows, my ohlcv dataframe interval is 15min, but in ploting, the candle bar interval is 2h. Can I know why, and how to make the candle bar interval is same as ohlcv dataframe interval?
Beta Was this translation helpful? Give feedback.
All reactions
Answered by
eervin123
May 30, 2023
It down samples the plot if they're over I think 10,000 candles. However, if you want to see the fall resolution then pass resample=False to your plotting function.
Bt.plot(resample=False) should work.
Replies: 1 comment 1 reply
-
It down samples the plot if they're over I think 10,000 candles. However, if you want to see the fall resolution then pass resample=False to your plotting function.
Bt.plot(resample=False) should work.
Beta Was this translation helpful? Give feedback.
All reactions
1 reply
-
I see, it works, thanks a lot!
Beta Was this translation helpful? Give feedback.
All reactions
-
👍 1
Answer selected by
peilinnnnnn
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment