Serving the Quantitative Finance Community

Search found 11 matches

by lmz
January 15th, 2011, 3:01 pm
Forum: Technical Forum
Topic: Implied volatility surface fit/smoothing
Replies: 11
Views: 29014

Implied volatility surface fit/smoothing

<r>I was using the Fengler method before and found it a little disappointing (complex to implement, and some instabilities on the resulting vol surface).Rather than that, I switched to the method described in this paper: <URL url="http://www.zeliade.com/whitepapers/zwp-0005.pdfIt%27s">http://www.zel...
by lmz
December 12th, 2010, 12:30 pm
Forum: Careers Forum
Topic: Goldman Sachs Phone Interview
Replies: 13
Views: 32587

Goldman Sachs Phone Interview

You should be prepared for some technical questions, you will most probably be asked some.Of course, it also depends on which team you are interviewing for. Is it for equity or ficc ?
by lmz
July 14th, 2010, 3:39 pm
Forum: Brainteaser Forum
Topic: Probability problem - 3 numbers between 0 and 1
Replies: 4
Views: 28262

Probability problem - 3 numbers between 0 and 1

I get 1/6 using
by lmz
July 7th, 2010, 2:03 pm
Forum: Brainteaser Forum
Topic: Just Another Dice problem!!
Replies: 10
Views: 29976

Just Another Dice problem!!

<r>I've found this using google, they also obtain 42 : <URL url="http://www.rpgcodex.net/phpBB/viewtopic.php?p=958326&sid=98493368af40e7e0260735fee8be7056They"><LINK_TEXT text="http://www.rpgcodex.net/phpBB/viewtopic ... be7056They">http://www.rpgcodex.net/phpBB/viewtopic.php?p=958326&sid=98...
by lmz
July 7th, 2010, 12:33 pm
Forum: Brainteaser Forum
Topic: Just Another Dice problem!!
Replies: 10
Views: 29976

Just Another Dice problem!!

<t>If we call s the state where the last throw is not a 6 and s' the state where the last throw is a 6.If you are in state s and throw the dice, you have probability 1/6 to have a 6 and reach state s' and probability 5/6 not to have a 6 and so to stay in state s. As you use one throw, you get e = 1 ...
by lmz
July 7th, 2010, 8:09 am
Forum: Brainteaser Forum
Topic: Just Another Dice problem!!
Replies: 10
Views: 29976

Just Another Dice problem!!

<t>I found 42 as follows (not sure if it's correct though)Let us call e the expected number of throws knowing that the last number was not a 6.Let us call e' the expected number of throws knowing that the last number was a 6.Then e = 1 + 1/6 * e' + 5/6 * eAnd e' = 1/6 + 5/6 * (1+e)From there it's ea...
by lmz
April 27th, 2010, 11:09 am
Forum: Technical Forum
Topic: Implied Volatility (curve fitting)
Replies: 3
Views: 31917

Implied Volatility (curve fitting)

As MCarreira said, Gatheral's SVI is quite good for this and to ensure some arbitrage-free conditions. Here is a paper that details how to do SVI calibration in an efficient way.
by lmz
April 5th, 2010, 4:26 pm
Forum: Numerical Methods Forum
Topic: Hull White calibration difficulties
Replies: 13
Views: 40449

Hull White calibration difficulties

<t>Hello Alinghi,You should only use your ZCB (or swap) quotes in order to obtain the F_t(0,t) + aF(0, t) part in your expression of . Indeed, for any possible value of a and sigma, P(0, t) will correspond to your ZCB quotes, this explains why your minimization procedure returns weird results. The f...
by lmz
March 7th, 2010, 1:06 pm
Forum: Technical Forum
Topic: Markov functional Libor model calibration
Replies: 3
Views: 33531

Markov functional Libor model calibration

Thank you both for the insight.About the volatility cube, if others are interested, I found the following technical report.
by lmz
March 1st, 2010, 2:24 pm
Forum: Technical Forum
Topic: Markov functional Libor model calibration
Replies: 3
Views: 33531

Markov functional Libor model calibration

<t>I have implemented a Markov functional Libor Forward/Swap model as described in Hunt and Kennedy's book "Financial derivatives in theory and practice". Calibration works very well on an implied volatility surface for digital caplets / swaptions.However I'm not sure about how to obtain this kind o...
by lmz
February 24th, 2010, 8:31 pm
Forum: Programming and Software Forum
Topic: Parallel Random Number Generators
Replies: 14
Views: 38766

Parallel Random Number Generators

<r>It is also possible to use interleaved Sobol sequences on each node. I.e. one node will generate sequence s_1, s_3, s_5... and the other one will generate s_2, s_4, s_6...An example of implementation is gived in "Quasirandom Number Generators for Parallel Monte Carlo Algorithms" B. C. Bromley 199...