Adding to a graph of stock prices
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi Everyone,
I have a graph with dates on the x axis and stock prices on the y axis. I have the closing price and moving average being plotted here. I have a variable with dates in col 1 and the change in the stock price in col 2. I would like to plot a circle on the the stock price line when the percent change is greater than .02. Any advice would be appreciated as I am at a complete loss. Best
0 Kommentare
Antworten (1)
Image Analyst
am 17 Okt. 2015
To get the percent change in stock price, you need the stock price itself, not just the change in stock price. Assuming you have that and can get the dates and percent changes into 1-D vectors, you can do:
indexes = percentChanges > 0.02;
hold on;
plot(dates(indexes), percent(indexes), 'ro', 'MarkerSize', 16, 'LineWidth', 2);
Siehe auch
Kategorien
Mehr zu Financial Toolbox 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!