• C++ Programming for Financial Engineering
    Highly recommended by thousands of MFE students. Covers essential C++ topics with applications to financial engineering. Learn more Join!
    Python for Finance with Intro to Data Science
    Gain practical understanding of Python to read, understand, and write professional Python code for your first day on the job. Learn more Join!
    An Intuition-Based Options Primer for FE
    Ideal for entry level positions interviews and graduate studies, specializing in options trading arbitrage and options valuation models. Learn more Join!

IRS swap rate with floating + spread

Joined
2/21/16
Messages
1
Points
11
I want to calculate the swap rate for an IRS where the floating leg is LIBOR+x bp. How can I calculate the swap rate and x that make the swap worth zero at inception?

Thanks in advance!
 
you wouldn't calculate x to make the swap have a pv of zero at inception, it would be the fixed rate, i.e., the coupon on the fixed leg, or the forward swap rate. say i receive floating and pay fixed,

floating leg: + LIBOR + x
fixed: -k

then i will calculate k to ensure that the PV

sum_{i} P(0,t_i) (t_i-t_{i-1}) (L(t_{i-1},t_i)+x-k)

is equal to zero

x is usually the spread or the margin added onto LIBOR, it would be specified in the contract a priori to any calculation being completed.

read brigo's book on interest rate models
 
Back
Top