horizontal lines in candle chart

3 vues (au cours des 30 derniers jours)
AA
AA le 14 Jan 2015
Réponse apportée : Sara le 14 Jan 2015
Hi, I have a candle chart and want to add horizontal lines to it at the following levels: 0%, 23.6%;38.2%;50%;61.8%;76.4%;100%.
The x-axis of the candle chart has 120 minutes. I want to draw these horizontal lines for the first 60 minutes.
thanks for the help.

Réponse acceptée

Sara
Sara le 14 Jan 2015
x = [0 60];
ylev = [0 23.6 38.2]; % add all levels you want
hold on;
for i = 1:numel(ylev)
plot(x,[ylev(i) ylev(i)],'k--'); % change line format as you like them
end

Plus de réponses (0)

Catégories

En savoir plus sur Syntax for States and Transitions dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by