Graphical representation of Value at Risk

조회 수: 1 (최근 30일)
Alessio Imperi Galli
Alessio Imperi Galli 2022년 3월 13일
답변: Prahlad Gowtham Katte 2022년 3월 17일
Hello, everyone,
I would like to graphically represent Value at Risk by colouring the area under the graph of a density function associated with the alpha confidence level. In other words I would like to replicate a figure like the one attached.
Thank you all and have a nice day :)
  댓글 수: 2
Torsten
Torsten 2022년 3월 13일
편집: Torsten 2022년 3월 13일
The area to the left looks greater than 0.05 :-)
Alessio Imperi Galli
Alessio Imperi Galli 2022년 3월 13일
I think it was just a demonstrative image

댓글을 달려면 로그인하십시오.

답변 (1개)

Prahlad Gowtham Katte
Prahlad Gowtham Katte 2022년 3월 17일
Hello
As per my understanding of the query you want to indicate certain areas within the curve with a different color and this can be achieved by area function. The code below is an example of how you can change the colors within the area under curve.
mu = 0.5;
sigma = 1;
pd = makedist('Normal','mu',mu,'sigma',sigma);
x = -4:0.1:6;
y = pdf(pd,x);
x_color=x(1:length(x(x<=0.05)));% x co-ordinates of required area
y_color=y(1:length(x(x<=0.05)));% y co-ordinates of required area
area(x_color,y_color,'FaceColor','r');% coloring the required area with red
x_color=x(length(x(x<=0.05)):end);
y_color=y(length(x(x<=0.05)):end);
hold on;
area(x_color,y_color,'FaceColor','g');%coloring the rest of the area with green
For more information on how to use area function please refer to the following link
Hope it helps!

Community Treasure Hunt

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

Start Hunting!

Translated by