Add a marker on a candle graph

8 Ansichten (letzte 30 Tage)
Guglielmo Sabatelli
Guglielmo Sabatelli am 8 Okt. 2020
I read file EXPORT9 ( attached ) and I plot a candle graph as follow:
A=readtable('EXPORT9');
B=table2timetable(A);
f=figure;
candle(B(range,:),'b')
title('High, Low, Open, Close Chart for TMW')
How can I add a marker on a specific data with a specific prize?

Antworten (1)

Pranav Verma
Pranav Verma am 15 Okt. 2020
Hi Guglielmo,
Candlestick chart represents the fluctuation of prices in a time frame. From the data passed to the candle function as an argument, the candlesticks are plotted which shows the opening and closing prices in the time frame ie, the fluctuation occured in the prices in each time frame. Markers on the other hand are specific data points which occur in the dataset and in the case of candlesticks chart would not be the correct way to visualise data.
However to see the opening and closing values of a candlestick, you can click on the opening and closing price on the candles in the generated candlestick chart.
Please refer to the below documentation on candlestick graph for more information:
  1 Kommentar
Guglielmo Sabatelli
Guglielmo Sabatelli am 15 Okt. 2020
Hi Pranav
Thank you for the answer but I would like to do another thing.
I can create a candle graph and I know how to visualize a marker on the graph.
I would like to add a marker, over or under a specific candle, on the graph yet created.I've attached an image just for example. How can I plot for example the red and blue points?

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by