Serving the Quantitative Finance Community

 
User avatar
BobJefferson
Topic Author
Posts: 0
Joined: September 14th, 2005, 2:39 am

Methods for Volatility Surface Interpolation

December 27th, 2005, 2:10 pm

Does anyone has any suggestions, bibliography, papers, anything else related with vols surface interpol?RegardsBob
 
User avatar
doreilly
Posts: 0
Joined: February 1st, 2005, 1:22 am

Methods for Volatility Surface Interpolation

December 27th, 2005, 2:41 pm

QuoteOriginally posted by: BobJeffersonDoes anyone has any suggestions, bibliography, papers, anything else related with vols surface interpol?RegardsBobIn Market Models Carol Alexander uses "cubic spline interpolation" from "Numerical Recipes in C", which obviously has an overview and some code. The latter that is, not the former.
 
User avatar
pcg
Posts: 0
Joined: September 13th, 2004, 11:11 am

Methods for Volatility Surface Interpolation

December 28th, 2005, 4:31 am

yes.. spline interpolation is a method that is used in practice.
 
User avatar
ancast
Posts: 0
Joined: July 14th, 2002, 3:00 am

Methods for Volatility Surface Interpolation

January 2nd, 2006, 3:28 pm

If you have a t least three reliable prices for an expiry, you can use the method explained in the paper at the following address. It has some more financial rationale than a spline interpolation.http://www.fabiomercurio.it/consistentfxsmile.pdf
 
User avatar
doublebarrier2000
Posts: 15
Joined: July 14th, 2002, 3:00 am

Methods for Volatility Surface Interpolation

January 5th, 2006, 11:15 am

Hi. The QuantLib open source software has some excellent volatility interpolation functions that can be implemented in excel.From memory, the function qlBlackVol will interpolate vols making sure that the surface is arbitrage freedownload the excel add-in package here
 
User avatar
doreilly
Posts: 0
Joined: February 1st, 2005, 1:22 am

Methods for Volatility Surface Interpolation

January 5th, 2006, 12:36 pm

QuoteOriginally posted by: doublebarrier2000Hi. The QuantLib open source software has some excellent volatility interpolation functions that can be implemented in excel.From memory, the function qlBlackVol will interpolate vols making sure that the surface is arbitrage freedownload the excel add-in package hereoop's db, the link is a little unsaansitaave, I presume you meant this link
Last edited by doreilly on January 4th, 2006, 11:00 pm, edited 1 time in total.
 
User avatar
Keanu
Posts: 0
Joined: January 9th, 2002, 3:35 pm

Methods for Volatility Surface Interpolation

January 5th, 2006, 1:34 pm

Here is a paper by Matthias Fengler:http://141.20.100.9/papers/pdf/SFB649DP2005-019.pdf
 
User avatar
jschnaz
Posts: 0
Joined: July 14th, 2002, 3:00 am

Methods for Volatility Surface Interpolation

January 9th, 2006, 12:20 pm

Be very careful with geometric interpolation methods (such as cubic spline) : they tend to generate weird implied distributions. Be careful also about what happens at the wings.
 
User avatar
doreilly
Posts: 0
Joined: February 1st, 2005, 1:22 am

Methods for Volatility Surface Interpolation

January 9th, 2006, 12:32 pm

QuoteOriginally posted by: jschnazBe very careful with geometric interpolation methods (such as cubic spline) : they tend to generate weird implied distributions. Be careful also about what happens at the wings.care to elaborate ?
 
User avatar
bluetrin
Posts: 2
Joined: September 9th, 2005, 6:41 am

Methods for Volatility Surface Interpolation

January 9th, 2006, 12:44 pm

QuoteOriginally posted by: doreillyQuoteOriginally posted by: jschnazBe very careful with geometric interpolation methods (such as cubic spline) : they tend to generate weird implied distributions. Be careful also about what happens at the wings.care to elaborate ?Because the differentials of the curve are computed to fit the points and to make the curve differentiable, you can have kind of border effects when one point move: it will also change the shape of the curve on the adjacent points.So when the data is not very accurate you can have strange shapes (especially on a market move) which can also change very quickly (when the prices update). And if you try to extrapolate the curve after your last point, the shape is only dependant of what your algorithm found as differential to fit the last points and most implementations will just continue the curve in a kind of straight line. (meaning that you get huge variations when the last point move)
 
User avatar
jschnaz
Posts: 0
Joined: July 14th, 2002, 3:00 am

Methods for Volatility Surface Interpolation

January 9th, 2006, 2:32 pm

Well yes with any polynomial method you have a border effect in that the whole curve moves when a single point is shifted. This is not too bad though.But more important is that the distribution implied from the vol surface depends on the 2nd derivative of the option price with respect to the strike. Obviously this function incorporate your interpolation function, whose 2nd derviative therefore comes to play. Any local irregularity of this function gets magnified and this can result in very conunterintuitive, if not directly arbitrable, distribution curves. Even with a standard cubic spline applied to real mkt data for a very liquid asset you will find cases where your density function actually decreases at some points ...So you may actually be better off not interpolating at all ... and instead price vanillas off the same model you use for exotics (or maybe use it to generate more points on your smile grids).
 
User avatar
jrquant1
Posts: 0
Joined: May 7th, 2003, 2:35 pm

Methods for Volatility Surface Interpolation

January 11th, 2006, 8:29 pm

Check out the paper by Nabil Kahale "An arbitrage-free interpolation of volatilities" published in 2004 Risk.
 
User avatar
prospero
Posts: 1
Joined: March 16th, 2002, 4:00 am

Methods for Volatility Surface Interpolation

January 12th, 2006, 2:13 pm

Eric Reiner, "The Characteristic Curve Approach to Arbitrage-Free Time Interpolation of Volatility", ICBI Global Derivatives Conference, 2004
 
User avatar
pschwen
Posts: 0
Joined: July 14th, 2002, 3:00 am

Methods for Volatility Surface Interpolation

January 21st, 2006, 6:45 am

>Eric Reiner, "The Characteristic Curve Approach to Arbitrage-Free Time Interpolation of Volatility", ICBI >Global Derivatives Conference, 2004does anyone have this presentation?
 
User avatar
pleoni
Posts: 0
Joined: July 13th, 2006, 1:05 pm

Methods for Volatility Surface Interpolation

April 3rd, 2007, 6:00 am

QuoteOriginally posted by: jrquant1Check out the paper by Nabil Kahale "An arbitrage-free interpolation of volatilities" published in 2004 Risk.anyone tried out this one? I just read through the introduction. It sounds very promising