*** Pour masquer/découvrir le code Asymptote qui a permis de créer la figure, il faut cliquer dessus. ;-) ***
- CODE ASYMPTOTE de la figure ci-dessus : Tout sélectionner
- size(300,0);
- import graph;
- ylimits(0,6);
- xlimits(0,12);
- real K=5;
- xaxis("$S$",0,EndArrow);
- yaxis("$V$",0,EndArrow);
- pen dasshed=linetype(new real[] {4,4});
- draw((0,K)--(K,0),black+1.3bp+dasshed);
- label("$K$",(K,0),S);
- label("$K$",(0,K),W);
- draw((K,0)--(2K+2,0),black+1.3bp+dasshed);
- path eur=(0,K-1)..(4,1.1)..(9,.5)..(11,.41);
- draw(eur);
- real[] xpt={0,1,2,2.5,3,3.5,4,5,7,11};
- real[] ypt={K,K-1,K-2,K-2.5,K-2.9,K-3.25,K-3.55,K-3.9,K-4.25,.45};
- draw(graph(xpt,ypt,Spline),black+1.3bp);
- draw((2.5,0)--(2.5,K-2.5),Dotted);
- label("$S_f(t)$",(2.5,0),S);
- arrow("Valeur option européeenne possible $t<T$",(.7,3.4),NE,2cm);
- arrow("Valeur option américaine possible $t<T$",(3.5,K-3.25),2N+E,1cm);
- arrow("Fonction payoff $t=T$",(K-.4,.4),NE,1cm);
O.G.