Serving the Quantitative Finance Community

Search found 14 matches

by ikeuchi
December 2nd, 2010, 2:56 pm
Forum: Trading Forum
Topic: The Vanna-Volga approach to hedging FX risk
Replies: 6
Views: 26498

The Vanna-Volga approach to hedging FX risk

>MCarrelraThanks. I read through the thread. It's interesting and the book is well-written. But I suppose some comments in the thread are a bit too positive.
by ikeuchi
December 2nd, 2010, 2:25 pm
Forum: Trading Forum
Topic: The Vanna-Volga approach to hedging FX risk
Replies: 6
Views: 26498

The Vanna-Volga approach to hedging FX risk

<t>Hi stringtheory. I agree. Adding to what you commented, it gives wired results for digital products such as european digitals or barriers even around ATM strikes. Actually, it could have very shin density around the ATM strike. And if no-touch-conditional, the density sometimes becomes negative d...
by ikeuchi
December 1st, 2010, 1:50 pm
Forum: Trading Forum
Topic: The Vanna-Volga approach to hedging FX risk
Replies: 6
Views: 26498

The Vanna-Volga approach to hedging FX risk

<t>Maybe each trader has one's own view, I suppose it works in some case.However I do not recommend Vanna-Volga methods in the following reasons.1) It does not fit highly skewed vol curve. esp, JPY 10 delta.2) Far strike imp. vol. converges to the reference vol rapidly.3) Marginal density (the 2nd d...
by ikeuchi
January 11th, 2010, 11:09 am
Forum: Technical Forum
Topic: Hull-White relation
Replies: 3
Views: 32259

Hull-White relation

x(t) changes and the relation holds. but it is short rate under fwd meas. see B&M 3.2.1 and 3.8.
by ikeuchi
December 2nd, 2009, 12:00 pm
Forum: Numerical Methods Forum
Topic: A New method for Deltas in the LMM
Replies: 15
Views: 38141

A New method for Deltas in the LMM

It works.I suppose LSM smoothes the exercise boundary but this is surprisingly good.Nice result from simple algorithm.
by ikeuchi
November 27th, 2009, 11:24 pm
Forum: Numerical Methods Forum
Topic: A New method for Deltas in the LMM
Replies: 15
Views: 38141

A New method for Deltas in the LMM

Thanks. I'm looking forward to.
by ikeuchi
November 27th, 2009, 1:23 pm
Forum: Numerical Methods Forum
Topic: A New method for Deltas in the LMM
Replies: 15
Views: 38141

A New method for Deltas in the LMM

<t>Amin, thank you for your reply.Ah, I forgot to count up / down calc. Correctly, central difference delta calc = 8,000,000.Since one could restrict delta calc to some set of shifts, e.g. principal components of zero bond yield curve, and regress if one likes, the number is a bit exaggerated. But s...
by ikeuchi
November 26th, 2009, 2:33 pm
Forum: Programming and Software Forum
Topic: xlw: types between C++ Excel
Replies: 8
Views: 39330

xlw: types between C++ Excel

As all said, XLOPER could point a range object.I don't remember exactly, but the following might work,(1) set the target argument reference type(2) write a function with XlfOper argument(3) get reference of XlfRef from the XlfOper arg via XlfOper::AsRef().
by ikeuchi
November 26th, 2009, 1:19 pm
Forum: Numerical Methods Forum
Topic: A New method for Deltas in the LMM
Replies: 15
Views: 38141

A New method for Deltas in the LMM

<t>So they are supposed to converge to the same value if the shift for both deterministic and random delta are appropriately small.Maybe you're right. Digital payoff could create bumpy exercise boundary.I personally think it is better to see the effect of "large jump" on pv, but is not for delta,to ...
by ikeuchi
November 26th, 2009, 11:53 am
Forum: Numerical Methods Forum
Topic: A New method for Deltas in the LMM
Replies: 15
Views: 38141

A New method for Deltas in the LMM

Sorry, a bit confusing expression. I mean the regression parameters of Longstaff-Schwartz Least Square Monte Carlo. It is fixed in the regression delta case.
by ikeuchi
November 26th, 2009, 10:22 am
Forum: Numerical Methods Forum
Topic: A New method for Deltas in the LMM
Replies: 15
Views: 38141

A New method for Deltas in the LMM

Thanks Amin.I see. Did you also fix the regression coefficients for central difference delta calculation?
by ikeuchi
November 25th, 2009, 2:51 pm
Forum: Numerical Methods Forum
Topic: A New method for Deltas in the LMM
Replies: 15
Views: 38141

A New method for Deltas in the LMM

<t>Thank you for presenting very interesting result.It works for non-differentiable payoff cases where Piterbarg's pathwise greeks method cannot be applied.I could not figure out the reason why the method works for CMS spread TARN digital payoff but does not for CMS digital bermuda.Do you have any i...
by ikeuchi
November 19th, 2009, 10:09 am
Forum: Programming and Software Forum
Topic: msvc 9: loop unwinding
Replies: 12
Views: 35014

msvc 9: loop unwinding

Sorry. I supposed it's about implicit type FDM solver.boost.thread could work but OpenMP seems easier.Maybe writing a couple of #pragma like directive is enough.OpenMP library also automatically pools thread handles in an optimized way.
by ikeuchi
November 18th, 2009, 11:55 am
Forum: Programming and Software Forum
Topic: msvc 9: loop unwinding
Replies: 12
Views: 35014

msvc 9: loop unwinding

<t>VC++ compliers do less optimization generally.1. Try Intel C++ complier and set -O5. You can use it free in trial period.This is sometimes twice as fast.2. Profile with Intel V-Tune.This gives you the performance profile.3. Use fixed length array only.Maybe the bottle-neck is tridiagonal inversio...