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
-
Beta Was this translation helpful? Give feedback.
Answered by
eervin123
May 30, 2023
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.
1 reply
Answer selected by
peilinnnnnn
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.