how to plot the payoff of an call/put option with matlab

3 visualizaciones (últimos 30 días)
how can I plot:
- intrinsic value of a call/put option in matlab?
- how can I plot the call/put value including the time value?
Additionally, I would like to plot delta, gamma, vega, etc. for several strikes and time to maturity, is that possible?
thanks for your help
  2 comentarios
the cyclist
the cyclist el 23 de Mzo. de 2013
All of this is possible in MATLAB, but your question is far too general. We have no idea knowing what you already understand (and don't understand) about this problem.
For example, do you know anything at all about plotting in MATLAB? (Would you know how to plot the line y = 2*x?)
How much do you understand about options? Do you know and understand the formulas for the values?
I suggest you try to break down your question into small chunks that will be easier for people to digest and help you answer. You should show what coded you have written for yourself as well.
Locks
Locks el 23 de Mzo. de 2013
I know how to plot a line in matlab and I suppose I know enough abbout options, but I thought there could be a function where I do not need to do it by myself. Is there no function for this?
I do not really know how to get the axis an how to describe them
Furthermore, to plot the intrinsic value, I need the max function to get max(S-K,0)
For the option value I need the black scholes formula, which fortunately I have
I there an easy and efficient way to handle that problem

Iniciar sesión para comentar.

Respuesta aceptada

the cyclist
the cyclist el 23 de Mzo. de 2013
Editada: the cyclist el 23 de Mzo. de 2013
The Financial Toolbox has formulas for option prices [e.g. blsprice() for Black-Scholes model option pricing]. You can see the complete list of functions here:
If you don't have that toolbox, then you might find something you can use in the File Exchange. Here's one:
(But I have no idea if it is any good.)
  14 comentarios
the cyclist
the cyclist el 24 de Mzo. de 2013
You can add text to a specific place on the plot using text function.
help text
for details.
I forgot about this when you asked about arrows earlier. You can do this using the annotation() command.
For example,
annotation(gcf,'doublearrow',[0.2 0.3],[0.3 0.5])
It is a little annoying that annotations use figure coordinates rather than axis coordinates. Read this for details:
Locks
Locks el 24 de Mzo. de 2013
is there a way to make the arrow smaller?

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Annotations en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by