2.0 Example 1 : Bond price and sensitivity (ftspex1.m)
|
|
|
- Kory Armstrong
- 9 years ago
- Views:
Transcription
1 1.0 Review of the definitions Matlab Bond Pricing Examples (Traditional bond analytics) The bond price B at time 0 can be priced by the following formula : where B t 1 C C + F ( 1 + y) t ( 1 + y) T C is the coupon payment, F is the face value, and y is the yield. (1.1) Duration or Macaulay s duration (1st order) is defined by D B tc TC ( + F) y ( 1 + y) / B y t y T / B It is a weighted average of payment times. t 1 (1.2) Modified duration is D B D M (1.) ( 1+ y) y / B B From (1.), we can see D, i.e., the relative change of bond price can be B M y approximated by the product of the modified duration and a small shift in yield. Convexity (2nd order) is 2 B C y 2 / B (1.4) 2.0 Example 1 : Bond price and sensitivity (ftspex1.m) In this example, we analyze relative importance of duration and convexity of a bond portfolio. In the following bonds matrix, each row represents a bond and each column shows a parameter. Settlement Maturity Face Coupon Number of Basis date date value rate payments Bonds [today datenum( 06/17/2010 ) today datenum( 06/09/2015 ) today datenum( 05/14/2025 ) ]; yield [ ];
2 Coupon rate is nominal (annual) rate of coupon payments. prbond is a Matlab function which returns the price p and accrued interest ai of a bond given all the parameters. The syntax is [p, ai] prbond(sd, md, rv, cpn, yld, per, basis) where sd is the settlement date, md is the maturity date, rv is the par value or face value, cpn is the coupon rate, yld is the yield, per is the number of coupon periods per year, and the basis is the day-count basis: 0 actual/actual, 1 0/60, 2 actual/60, actual/65. The coupon rate and number of coupon payments are used to calculate the amount of coupon C paid during each period. Accrued interest is determined by the following formula : settlement date previous coupon date ai C (2.1) time between periods and the number of days in the numerator and denominator are measured differently according to the day-count basis. [d,m] bonddur(sd, md, rv, cpn, yld, per, basis) finds the Macaulay duration d and modified duration m in years and [pc,yc] bondconv(sd, md, rv, cpn, yld, per, basis) returns the convexity for a security in periods pc and years yc. The duration of the portfolio p_d M and convexity of the portfolio p_c can be calculated by the following formula. p_d M w i D M (i) and p_c w y (i) i C i1 (2.2) where w i is the the weight of i-th bond in the portfolio and D M (i) and y C (i) are duration and convexity of i-th bond, respectively. Suppose there is a shift in yield curve, dy.002, i.e., 20 basis points where 1 basis point is 1/100 percent or 1/ Percentage change of the portfolio price (linear approximation) is i1 perc 1 and the second order approximation is p_d M * dy * 100 p_c * dy 2 * 100 perc 2 perc The approximate prices are (2.) (2.4) price 1 perc original 1 * original (2.5) perc and price 2 original 2 * original (2.6) 100
3 .0 Example 2 : Hedging against duration and convexity (ftspex2.m) This example constructs a bond portfolio to hedge the portfolio of example 1. We assume a long position in the portfolio in the example 1, and that three other bonds are available for hedging. We compute weights for these three other bonds in a new portfolio so that the duration and convexity of the new portfolio match those of the original portfolio. The following are the bonds we use in hedging : Settlement Maturity Face Coupon Number of Basis date date value rate payments Bonds [today datenum( 06/15/2005 ) today datenum( 08/02/2010 ) today datenum( 0/01/2025 ) ]; yield [ ]; Step 1 : Compute the prices, modified durations - dur 1, dur 2, and dur -, and convexities - conv 1, conv 2, and conv - of the above bonds using Matlab functions prbond, bonddur, and bondconv, respectively. Step 2 : Get the weights of the bonds using the Matlab "\" operator. and the vector w of weights is dur 1 dur 2 dur A conv 1 conv 2 conv and b p_d M p_c 1 (.1) w A \ b (.2) 4.0 Example : Visualizing the sensitivity of a bond portfolio s price to parallel shifts in the yield curve (ftspex.m) This example uses the Financial Toolbox bond pricing functions in a routine that takes time-tomaturity and yield as input arguments and returns the price of a portfolio of bonds. It plots the price and shows the behavior of bond prices as yield and time vary.
4 5.0 Yield curves and spot curves from bond data This example takes coupon bearing bonds with prices as input and generates the following four graphs. (1) Extracting yields Recall (5.1) The Matlab function yldbond returns yields when the bond prices are given. yldbond uses Newton t method and cubin spline interpolation. (2) Spot rate (zero coupon yield curve) B t 1 C C + F ( 1 + y) t ( 1 + y) T Use bootstrapping and smoothing with splines. Find each successive spot rate by requiring that the bond of the corresponding maturity be priced correctly, given all the previous rates calculated. This process is known as the "bootstrapp method" for calculating spot rates. () Extracting a forward rate curve from zero coupon yield curve Suppose y i and f i are the yield and the forward rate at the time T i respectively. The relation exp( y i T i ) exp ( y i 1 T ) i 1 exp( f i [ T i T i 1 ]) gives the formula for the forward rate. y i T i y i 1 T i 1 f i T i T i 1 (5.2)
5 6.0 Portfolio Analysis : Heavy use of QPs and LPs Often finding the optimal portfolio is formulated as a QP. min x T Cx (6.1) s.t. x T r r x T e 1 C is a symmetric positive definite (SPD) matrix. The first constraint is for the expected profit. Variations (1) If no shorting is allowed, nonnegativity on x is required. (2) Sometimes there is a disjunctive constraint (much harder) : () Risk aversion factor x i 0 or x i l i > 0 (6.2) min k 2 -- x T Cx r T x (6.) x T e 1 where k is the risk tolerance. The objective function is called a utility function. (4) Downside minimization over scenarios min E( ( D T x τ) ) (6.4) expected gain over benchmark K where y_ min(0, y). The constraint is linear and the optimization problem can be formulates as LP. Solving positive definite QPs 1. The problem has a unique global solution. 2. Iterative solution i) Active set method : finite algorithm direct matrix factorization matrix updating e.g. - Matlab ( to change soon) - CPLEX ii) Asymptotic (usually interior) finds a sequence of points converging to the solution direct and indirect matrix solutions fast convergence driven by KT conditions
VALUATION OF FIXED INCOME SECURITIES. Presented By Sade Odunaiya Partner, Risk Management Alliance Consulting
VALUATION OF FIXED INCOME SECURITIES Presented By Sade Odunaiya Partner, Risk Management Alliance Consulting OUTLINE Introduction Valuation Principles Day Count Conventions Duration Covexity Exercises
CHAPTER 14. Z(t; i) + Z(t; 5),
CHAPER 14 FIXED-INCOME PRODUCS AND ANALYSIS: YIELD, DURAION AND CONVEXIY 1. A coupon bond pays out 3% every year, with a principal of $1 and a maturity of five years. Decompose the coupon bond into a set
Problems and Solutions
1 CHAPTER 1 Problems 1.1 Problems on Bonds Exercise 1.1 On 12/04/01, consider a fixed-coupon bond whose features are the following: face value: $1,000 coupon rate: 8% coupon frequency: semiannual maturity:
Problems and Solutions
Problems and Solutions CHAPTER Problems. Problems on onds Exercise. On /04/0, consider a fixed-coupon bond whose features are the following: face value: $,000 coupon rate: 8% coupon frequency: semiannual
Margin Calculation Methodology and Derivatives and Repo Valuation Methodology
Margin Calculation Methodology and Derivatives and Repo Valuation Methodology 1 Overview This document presents the valuation formulas for interest rate derivatives and repo transactions implemented in
Manual for SOA Exam FM/CAS Exam 2.
Manual for SOA Exam FM/CAS Exam 2. Chapter 6. Variable interest rates and portfolio insurance. c 2009. Miguel A. Arcones. All rights reserved. Extract from: Arcones Manual for the SOA Exam FM/CAS Exam
Zero-Coupon Bonds (Pure Discount Bonds)
Zero-Coupon Bonds (Pure Discount Bonds) The price of a zero-coupon bond that pays F dollars in n periods is F/(1 + r) n, where r is the interest rate per period. Can meet future obligations without reinvestment
I. Readings and Suggested Practice Problems. II. Risks Associated with Default-Free Bonds
Prof. Alex Shapiro Lecture Notes 13 Bond Portfolio Management I. Readings and Suggested Practice Problems II. Risks Associated with Default-Free Bonds III. Duration: Details and Examples IV. Immunization
Matching Investment Strategies in General Insurance Is it Worth It? Aim of Presentation. Background 34TH ANNUAL GIRO CONVENTION
Matching Investment Strategies in General Insurance Is it Worth It? 34TH ANNUAL GIRO CONVENTION CELTIC MANOR RESORT, NEWPORT, WALES Aim of Presentation To answer a key question: What are the benefit of
Alliance Consulting BOND YIELDS & DURATION ANALYSIS. Bond Yields & Duration Analysis Page 1
BOND YIELDS & DURATION ANALYSIS Bond Yields & Duration Analysis Page 1 COMPUTING BOND YIELDS Sources of returns on bond investments The returns from investment in bonds come from the following: 1. Periodic
ASSET LIABILITY MANAGEMENT Significance and Basic Methods. Dr Philip Symes. Philip Symes, 2006
1 ASSET LIABILITY MANAGEMENT Significance and Basic Methods Dr Philip Symes Introduction 2 Asset liability management (ALM) is the management of financial assets by a company to make returns. ALM is necessary
Lecture 3. Linear Programming. 3B1B Optimization Michaelmas 2015 A. Zisserman. Extreme solutions. Simplex method. Interior point method
Lecture 3 3B1B Optimization Michaelmas 2015 A. Zisserman Linear Programming Extreme solutions Simplex method Interior point method Integer programming and relaxation The Optimization Tree Linear Programming
DATA ANALYSIS II. Matrix Algorithms
DATA ANALYSIS II Matrix Algorithms Similarity Matrix Given a dataset D = {x i }, i=1,..,n consisting of n points in R d, let A denote the n n symmetric similarity matrix between the points, given as where
CHAPTER 7: FIXED-INCOME SECURITIES: PRICING AND TRADING
CHAPTER 7: FIXED-INCOME SECURITIES: PRICING AND TRADING Topic One: Bond Pricing Principles 1. Present Value. A. The present-value calculation is used to estimate how much an investor should pay for a bond;
Nonlinear Programming Methods.S2 Quadratic Programming
Nonlinear Programming Methods.S2 Quadratic Programming Operations Research Models and Methods Paul A. Jensen and Jonathan F. Bard A linearly constrained optimization problem with a quadratic objective
FINANCE 1. DESS Gestion des Risques/Ingéniérie Mathématique Université d EVRY VAL D ESSONNE EXERCICES CORRIGES. Philippe PRIAULET
FINANCE 1 DESS Gestion des Risques/Ingéniérie Mathématique Université d EVRY VAL D ESSONNE EXERCICES CORRIGES Philippe PRIAULET 1 Exercise 1 On 12/04/01 consider a fixed coupon bond whose features are
LIFE INSURANCE AND WEALTH MANAGEMENT PRACTICE COMMITTEE AND GENERAL INSURANCE PRACTICE COMMITTEE
LIFE INSURANCE AND WEALTH MANAGEMENT PRACTICE COMMITTEE AND GENERAL INSURANCE PRACTICE COMMITTEE Information Note: Discount Rates for APRA Capital Standards Contents 1. Status of Information Note 3 2.
Learning Curve An introduction to the use of the Bloomberg system in swaps analysis Received: 1st July, 2002
Learning Curve An introduction to the use of the Bloomberg system in swaps analysis Received: 1st July, 2002 Aaron Nematnejad works in the fixed income analytics team at Bloomberg L.P. in London. He graduated
the points are called control points approximating curve
Chapter 4 Spline Curves A spline curve is a mathematical representation for which it is easy to build an interface that will allow a user to design and control the shape of complex curves and surfaces.
In this chapter we will learn about. Treasury Notes and Bonds, Treasury Inflation Protected Securities,
2 Treasury Securities In this chapter we will learn about Treasury Bills, Treasury Notes and Bonds, Strips, Treasury Inflation Protected Securities, and a few other products including Eurodollar deposits.
Nonlinear Optimization: Algorithms 3: Interior-point methods
Nonlinear Optimization: Algorithms 3: Interior-point methods INSEAD, Spring 2006 Jean-Philippe Vert Ecole des Mines de Paris [email protected] Nonlinear optimization c 2006 Jean-Philippe Vert,
Fixed Income: Practice Problems with Solutions
Fixed Income: Practice Problems with Solutions Directions: Unless otherwise stated, assume semi-annual payment on bonds.. A 6.0 percent bond matures in exactly 8 years and has a par value of 000 dollars.
Derivatives Interest Rate Futures. Professor André Farber Solvay Brussels School of Economics and Management Université Libre de Bruxelles
Derivatives Interest Rate Futures Professor André Farber Solvay Brussels School of Economics and Management Université Libre de Bruxelles Interest Rate Derivatives Forward rate agreement (FRA): OTC contract
Financial Mathematics for Actuaries. Chapter 8 Bond Management
Financial Mathematics for Actuaries Chapter 8 Bond Management Learning Objectives 1. Macaulay duration and modified duration 2. Duration and interest-rate sensitivity 3. Convexity 4. Some rules for duration
1.2 Structured notes
1.2 Structured notes Structured notes are financial products that appear to be fixed income instruments, but contain embedded options and do not necessarily reflect the risk of the issuing credit. Used
Master of Mathematical Finance: Course Descriptions
Master of Mathematical Finance: Course Descriptions CS 522 Data Mining Computer Science This course provides continued exploration of data mining algorithms. More sophisticated algorithms such as support
Bond Pricing Fundamentals
Bond Pricing Fundamentals Valuation What determines the price of a bond? Contract features: coupon, face value (FV), maturity Risk-free interest rates in the economy (US treasury yield curve) Credit risk
A Flexible Benchmark Relative Method of Attributing Returns for Fixed Income Portfolios
White Paper A Flexible Benchmark Relative Method of Attributing s for Fixed Income Portfolios By Stanley J. Kwasniewski, CFA Copyright 2013 FactSet Research Systems Inc. All rights reserved. A Flexible
Fixed-Income Securities Lecture 4: Hedging Interest Rate Risk Exposure Traditional Methods
Fixed-Income Securities Lecture 4: Hedging Interest Rate Risk Exposure Traditional Methods Philip H. Dybvig Washington University in Saint Louis Matching maturities Duration Effective duration Multiple
Interest Rate and Credit Risk Derivatives
Interest Rate and Credit Risk Derivatives Interest Rate and Credit Risk Derivatives Peter Ritchken Kenneth Walter Haber Professor of Finance Weatherhead School of Management Case Western Reserve University
Introduction to Fixed Income (IFI) Course Syllabus
Introduction to Fixed Income (IFI) Course Syllabus 1. Fixed income markets 1.1 Understand the function of fixed income markets 1.2 Know the main fixed income market products: Loans Bonds Money market instruments
CURRENT STANDARDS ON FIXED INCOME
CURRENT STANDARDS ON FIXED INCOME PRICING FIXED INCOME SECURITIES AGAINST AN INTEREST SWAP CURVE December 2012 CNO Association régie par la loi du 1 er juillet 1901 8 rue du Mail 75002 Paris http://www.cnofrance.org
International Doctoral School Algorithmic Decision Theory: MCDA and MOO
International Doctoral School Algorithmic Decision Theory: MCDA and MOO Lecture 2: Multiobjective Linear Programming Department of Engineering Science, The University of Auckland, New Zealand Laboratoire
Optimization Modeling for Mining Engineers
Optimization Modeling for Mining Engineers Alexandra M. Newman Division of Economics and Business Slide 1 Colorado School of Mines Seminar Outline Linear Programming Integer Linear Programming Slide 2
Linear Programming. Widget Factory Example. Linear Programming: Standard Form. Widget Factory Example: Continued.
Linear Programming Widget Factory Example Learning Goals. Introduce Linear Programming Problems. Widget Example, Graphical Solution. Basic Theory:, Vertices, Existence of Solutions. Equivalent formulations.
Introduction. example of a AA curve appears at the end of this presentation.
1 Introduction The High Quality Market (HQM) Corporate Bond Yield Curve for the Pension Protection Act (PPA) uses a methodology developed at Treasury to construct yield curves from extended regressions
10. Fixed-Income Securities. Basic Concepts
0. Fixed-Income Securities Fixed-income securities (FIS) are bonds that have no default risk and their payments are fully determined in advance. Sometimes corporate bonds that do not necessarily have certain
The TED spread trade: illustration of the analytics using Bloomberg
The TED spread trade: illustration of the analytics using Bloomberg Aaron Nematnejad January 2003 1 The views, thoughts and opinions expressed in this article represent those of the author in his individual
Chapter 4. Polynomial and Rational Functions. 4.1 Polynomial Functions and Their Graphs
Chapter 4. Polynomial and Rational Functions 4.1 Polynomial Functions and Their Graphs A polynomial function of degree n is a function of the form P = a n n + a n 1 n 1 + + a 2 2 + a 1 + a 0 Where a s
CASH FLOW MATCHING PROBLEM WITH CVaR CONSTRAINTS: A CASE STUDY WITH PORTFOLIO SAFEGUARD. Danjue Shang and Stan Uryasev
CASH FLOW MATCHING PROBLEM WITH CVaR CONSTRAINTS: A CASE STUDY WITH PORTFOLIO SAFEGUARD Danjue Shang and Stan Uryasev PROJECT REPORT #2011-1 Risk Management and Financial Engineering Lab Department of
Course FM / Exam 2. Calculator advice
Course FM / Exam 2 Introduction It wasn t very long ago that the square root key was the most advanced function of the only calculator approved by the SOA/CAS for use during an actuarial exam. Now students
1. The forward curve
1. The forward curve Andrew Lesniewsi January 28, 2008 Contents 1 LIBOR and LIBOR based instruments 1 1.1 Forward rate agreements...................... 2 1.2 LIBOR futures........................... 3
Futures on Notional Bonds André Farber (Revised Version September 2005)
Solvay Business School Université Libre de Bruxelles Futures on Notional Bonds André Farber (Revised Version September 2005) Government bond futures are contracts to buy forward bond issued by governments.
General Framework for an Iterative Solution of Ax b. Jacobi s Method
2.6 Iterative Solutions of Linear Systems 143 2.6 Iterative Solutions of Linear Systems Consistent linear systems in real life are solved in one of two ways: by direct calculation (using a matrix factorization,
ACI THE FINANCIAL MARKETS ASSOCIATION
ACI THE FINANCIAL MARKETS ASSOCIATION EXAMINATION FORMULAE 2009 VERSION page number INTEREST RATE..2 MONEY MARKET..... 3 FORWARD-FORWARDS & FORWARD RATE AGREEMENTS..4 FIXED INCOME.....5 FOREIGN EXCHANGE
Chapter Nine Selected Solutions
Chapter Nine Selected Solutions 1. What is the difference between book value accounting and market value accounting? How do interest rate changes affect the value of bank assets and liabilities under the
Interest Rate Futures. Chapter 6
Interest Rate Futures Chapter 6 1 Day Count Convention The day count convention defines: The period of time to which the interest rate applies. The period of time used to calculate accrued interest (relevant
Solutions 2. 1. For the benchmark maturity sectors in the United States Treasury bill markets,
FIN 472 Professor Robert Hauswald Fixed-Income Securities Kogod School of Business, AU Solutions 2 1. For the benchmark maturity sectors in the United States Treasury bill markets, Bloomberg reported the
Linear Programming for Optimization. Mark A. Schulze, Ph.D. Perceptive Scientific Instruments, Inc.
1. Introduction Linear Programming for Optimization Mark A. Schulze, Ph.D. Perceptive Scientific Instruments, Inc. 1.1 Definition Linear programming is the name of a branch of applied mathematics that
Package jrvfinance. R topics documented: October 6, 2015
Package jrvfinance October 6, 2015 Title Basic Finance; NPV/IRR/Annuities/Bond-Pricing; Black Scholes Version 1.03 Implements the basic financial analysis functions similar to (but not identical to) what
Bond Price Arithmetic
1 Bond Price Arithmetic The purpose of this chapter is: To review the basics of the time value of money. This involves reviewing discounting guaranteed future cash flows at annual, semiannual and continuously
Duration and Bond Price Volatility: Some Further Results
JOURNAL OF ECONOMICS AND FINANCE EDUCATION Volume 4 Summer 2005 Number 1 Duration and Bond Price Volatility: Some Further Results Hassan Shirvani 1 and Barry Wilbratte 2 Abstract This paper evaluates the
550.444 Introduction to Financial Derivatives
550.444 Introduction to Financial Derivatives Week of October 7, 2013 Interest Rate Futures Where we are Last week: Forward & Futures Prices/Value (Chapter 5, OFOD) This week: Interest Rate Futures (Chapter
Yield Book Advanced Topics
Yield Book Advanced Topics The Yield Book Inc. Yield Book Advanced Topics Version 1-17-02 These materials and the information and methodologies described and incorporated herein are proprietary and confidential
YIELD CURVE GENERATION
1 YIELD CURVE GENERATION Dr Philip Symes Agenda 2 I. INTRODUCTION II. YIELD CURVES III. TYPES OF YIELD CURVES IV. USES OF YIELD CURVES V. YIELD TO MATURITY VI. BOND PRICING & VALUATION Introduction 3 A
Equity-index-linked swaps
Equity-index-linked swaps Equivalent to portfolios of forward contracts calling for the exchange of cash flows based on two different investment rates: a variable debt rate (e.g. 3-month LIBOR) and the
An Overview Of Software For Convex Optimization. Brian Borchers Department of Mathematics New Mexico Tech Socorro, NM 87801 borchers@nmt.
An Overview Of Software For Convex Optimization Brian Borchers Department of Mathematics New Mexico Tech Socorro, NM 87801 [email protected] In fact, the great watershed in optimization isn t between linearity
Regression III: Advanced Methods
Lecture 16: Generalized Additive Models Regression III: Advanced Methods Bill Jacoby Michigan State University http://polisci.msu.edu/jacoby/icpsr/regress3 Goals of the Lecture Introduce Additive Models
Debt Instruments Set 2
Debt Instruments Set 2 Backus/October 29, 1998 Bond Arithmetic 0. Overview Zeros and coupon bonds Spot rates and yields Day count conventions Replication and arbitrage Forward rates Yields and returns
VALUATION OF DEBT CONTRACTS AND THEIR PRICE VOLATILITY CHARACTERISTICS QUESTIONS See answers below
VALUATION OF DEBT CONTRACTS AND THEIR PRICE VOLATILITY CHARACTERISTICS QUESTIONS See answers below 1. Determine the value of the following risk-free debt instrument, which promises to make the respective
Fixed-Income Securities. Assignment
FIN 472 Professor Robert B.H. Hauswald Fixed-Income Securities Kogod School of Business, AU Assignment Please be reminded that you are expected to use contemporary computer software to solve the following
CHAPTER 11 CURRENCY AND INTEREST RATE FUTURES
Answers to end-of-chapter exercises ARBITRAGE IN THE CURRENCY FUTURES MARKET 1. Consider the following: Spot Rate: $ 0.65/DM German 1-yr interest rate: 9% US 1-yr interest rate: 5% CHAPTER 11 CURRENCY
Yield to Maturity Outline and Suggested Reading
Yield to Maturity Outline Outline and Suggested Reading Yield to maturity on bonds Coupon effects Par rates Buzzwords Internal rate of return, Yield curve Term structure of interest rates Suggested reading
Risk and Return in the Canadian Bond Market
Risk and Return in the Canadian Bond Market Beyond yield and duration. Ronald N. Kahn and Deepak Gulrajani (Reprinted with permission from The Journal of Portfolio Management ) RONALD N. KAHN is Director
Introduction to swaps
Introduction to swaps Steven C. Mann M.J. Neeley School of Business Texas Christian University incorporating ideas from Teaching interest rate and currency swaps" by Keith C. Brown (Texas-Austin) and Donald
DERIVATIVES AS MATRICES; CHAIN RULE
DERIVATIVES AS MATRICES; CHAIN RULE 1. Derivatives of Real-valued Functions Let s first consider functions f : R 2 R. Recall that if the partial derivatives of f exist at the point (x 0, y 0 ), then we
issue brief Duration Basics January 2007 Duration is a term used by fixed-income investors, California Debt and Investment Advisory Commission
issue brief California Debt and Investment Advisory Commission # 06-10 January 2007 Duration Basics Introduction Duration is a term used by fixed-income investors, financial advisors, and investment advisors.
Chapter 7 Nonlinear Systems
Chapter 7 Nonlinear Systems Nonlinear systems in R n : X = B x. x n X = F (t; X) F (t; x ; :::; x n ) B C A ; F (t; X) =. F n (t; x ; :::; x n ) When F (t; X) = F (X) is independent of t; it is an example
SOLVING LINEAR SYSTEMS
SOLVING LINEAR SYSTEMS Linear systems Ax = b occur widely in applied mathematics They occur as direct formulations of real world problems; but more often, they occur as a part of the numerical analysis
Treasury Bond Futures
Treasury Bond Futures Concepts and Buzzwords Basic Futures Contract Futures vs. Forward Delivery Options Reading Veronesi, Chapters 6 and 11 Tuckman, Chapter 14 Underlying asset, marking-to-market, convergence
Global Fixed Income Portfolio
Asset Management Global Fixed Income Portfolio CfBS Center for Business Studies AG Dr. Enzo Mondello, CFA, FRM, CAIA Content 1 2 3 4 5 6 7 8 9 10 11 12 Risks Associated with Investing in Bonds Fixed-Income
IAA PAPER VALUATION OF RISK ADJUSTED CASH FLOWS AND THE SETTING OF DISCOUNT RATES THEORY AND PRACTICE
Introduction This document refers to sub-issue 11G of the IASC Insurance Issues paper and proposes a method to value risk-adjusted cash flows (refer to the IAA paper INSURANCE LIABILITIES - VALUATION &
Analysis of Deterministic Cash Flows and the Term Structure of Interest Rates
Analysis of Deterministic Cash Flows and the Term Structure of Interest Rates Cash Flow Financial transactions and investment opportunities are described by cash flows they generate. Cash flow: payment
Debt Instruments Set 3
Debt Instruments Set 3 Backus/February 9, 1998 Quantifying Interest Rate Risk 0. Overview Examples Price and Yield Duration Risk Management Convexity Value-at-Risk Active Investment Strategies Debt Instruments
ANALYSIS OF FIXED INCOME SECURITIES
ANALYSIS OF FIXED INCOME SECURITIES Valuation of Fixed Income Securities Page 1 VALUATION Valuation is the process of determining the fair value of a financial asset. The fair value of an asset is its
Bonds and Yield to Maturity
Bonds and Yield to Maturity Bonds A bond is a debt instrument requiring the issuer to repay to the lender/investor the amount borrowed (par or face value) plus interest over a specified period of time.
MONEY MARKET SUBCOMMITEE(MMS) FLOATING RATE NOTE PRICING SPECIFICATION
MONEY MARKET SUBCOMMITEE(MMS) FLOATING RATE NOTE PRICING SPECIFICATION This document outlines the use of the margin discounting methodology to price vanilla money market floating rate notes as endorsed
Curve Fitting with Maple
Curve Fitting with Maple Maplesoft, a division of Waterloo Maple Inc., 2007 Introduction Maple includes a number of assistants that allows a user to experiment and easily perform key tasks. This Tips and
4.6 Linear Programming duality
4.6 Linear Programming duality To any minimization (maximization) LP we can associate a closely related maximization (minimization) LP. Different spaces and objective functions but in general same optimal
This paper is not to be removed from the Examination Halls
~~FN3023 ZB d0 This paper is not to be removed from the Examination Halls UNIVERSITY OF LONDON FN3023 ZB BSc degrees and Diplomas for Graduates in Economics, Management, Finance and the Social Sciences,
Principles of Principal Components
UNITED STATES JANUARY 31, 2000 FIXED-INCOME RESEARCH Portfolio Strategies UNITED STATES Bülent Baygün (212) 816-8001 [email protected] New York Janet Showers (212) 816-8020 [email protected]
We first solve for the present value of the cost per two barrels: (1.065) 2 = 41.033 (1.07) 3 = 55.341. x = 20.9519
Chapter 8 Swaps Question 8.1. We first solve for the present value of the cost per two barrels: $22 1.06 + $23 (1.065) 2 = 41.033. We then obtain the swap price per barrel by solving: which was to be shown.
The US Municipal Bond Risk Model. Oren Cheyette
The US Municipal Bond Risk Model Oren Cheyette THE US MUNICIPAL BOND RISK MODEL Overview Barra s integrated risk model includes coverage of municipal bonds accounting for marketwide and issuer-specific
Math of Finance. Texas Association of Counties January 2014
Math of Finance Texas Association of Counties January 2014 Money Market Securities Sample Treasury Bill Quote*: N Bid Ask Ask Yld 126 4.86 4.85 5.00 *(Yields do not reflect current market conditions) Bank
CREATING A CORPORATE BOND SPOT YIELD CURVE FOR PENSION DISCOUNTING DEPARTMENT OF THE TREASURY OFFICE OF ECONOMIC POLICY WHITE PAPER FEBRUARY 7, 2005
CREATING A CORPORATE BOND SPOT YIELD CURVE FOR PENSION DISCOUNTING I. Introduction DEPARTMENT OF THE TREASURY OFFICE OF ECONOMIC POLICY WHITE PAPER FEBRUARY 7, 2005 Plan sponsors, plan participants and
Valuation, Pricing of Options / Use of MATLAB
CS-5 Computational Tools and Methods in Finance Tom Coleman Valuation, Pricing of Options / Use of MATLAB 1.0 Put-Call Parity (review) Given a European option with no dividends, let t current time T exercise
Estimating Risk free Rates. Aswath Damodaran. Stern School of Business. 44 West Fourth Street. New York, NY 10012. [email protected].
Estimating Risk free Rates Aswath Damodaran Stern School of Business 44 West Fourth Street New York, NY 10012 [email protected] Estimating Risk free Rates Models of risk and return in finance start
IEOR 4404 Homework #2 Intro OR: Deterministic Models February 14, 2011 Prof. Jay Sethuraman Page 1 of 5. Homework #2
IEOR 4404 Homework # Intro OR: Deterministic Models February 14, 011 Prof. Jay Sethuraman Page 1 of 5 Homework #.1 (a) What is the optimal solution of this problem? Let us consider that x 1, x and x 3
GESTÃO FINANCEIRA II PROBLEM SET 2 - SOLUTIONS
GESTÃO FINANCEIRA II PROBLEM SET - SOLUTIONS (FROM BERK AND DEMARZO S CORPORATE FINANCE ) LICENCIATURA UNDERGRADUATE COURSE 1 ST SEMESTER 010-011 Yield to Maturity Chapter 8 Valuing Bonds 8-3. The following
CUSTOM INDEX MANAGER. Index Comparison and Performance Attribution
Index Comparison and Performance Attribution Custom Index Manager helps you navigate through a sea of options to steer your investments in the right direction. Portfolio managers encounter many challenges
Building a Smooth Yield Curve. University of Chicago. Jeff Greco
Building a Smooth Yield Curve University of Chicago Jeff Greco email: [email protected] Preliminaries As before, we will use continuously compounding Act/365 rates for both the zero coupon rates
EXCEL SOLVER TUTORIAL
ENGR62/MS&E111 Autumn 2003 2004 Prof. Ben Van Roy October 1, 2003 EXCEL SOLVER TUTORIAL This tutorial will introduce you to some essential features of Excel and its plug-in, Solver, that we will be using
SEQUENCES ARITHMETIC SEQUENCES. Examples
SEQUENCES ARITHMETIC SEQUENCES An ordered list of numbers such as: 4, 9, 6, 25, 36 is a sequence. Each number in the sequence is a term. Usually variables with subscripts are used to label terms. For example,
A) 1.8% B) 1.9% C) 2.0% D) 2.1% E) 2.2%
1 Exam FM Questions Practice Exam 1 1. Consider the following yield curve: Year Spot Rate 1 5.5% 2 5.0% 3 5.0% 4 4.5% 5 4.0% Find the four year forward rate. A) 1.8% B) 1.9% C) 2.0% D) 2.1% E) 2.2% 2.
Mathematical finance and linear programming (optimization)
Mathematical finance and linear programming (optimization) Geir Dahl September 15, 2009 1 Introduction The purpose of this short note is to explain how linear programming (LP) (=linear optimization) may
Massachusetts State Treasurer s Office (STO) Guidelines for Current and Advance Refundings
Massachusetts State Treasurer s Office (STO) Guidelines for Current and Advance Refundings The STO intends to evaluate refunding opportunities for Massachusetts bonds based on a refunding efficiency approach.
