Update candle plot with additional candle

6 views (last 30 days)
Is it somehow possible to update an existing candle-plot without redrawing the whole chart?
Meaning I want to add a candle when new data has arrived. Everytime redrawing the whole chart is rather slow.

Accepted Answer

Mario Malic
Mario Malic on 1 Jan 2021
If you save the handle to the plot, you can access its Data property
h = candle(ax, someData)
h.Data(end+1) = [1 2 3 4];
  6 Comments
Ali Komai
Ali Komai on 2 Jan 2021
Ah I see, the candle is appended automatically at the end. Probably works through the included datetime. Nice!
Thank you very much!
Mario Malic
Mario Malic on 2 Jan 2021
Edited: Mario Malic on 2 Jan 2021
You're welcome. You can accept my answer on the blue button, thanks in advance.

Sign in to comment.

More Answers (0)

Categories

Find more on Discrete Data Plots in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!