Saturday, February 29, 2020

Another Misuse of Financial Derivatives

Just like any financial derivatives that were initially designed for risk management purposes, interest rate swaps are an effective tool for managing and transferring interest rate risks as long as those risks are well understood.  But as banks and financial institutions are constantly trying to invent new financial products to sell to their consumers, sometimes the risks of those products are not well understood and disclosed.

This is what happened with the interest rate swap market in New Zealand where banks sold interest rate swaps to farmers in order for them to hedge the fluctuation in the mortgage rates.  However, the banks only emphasized the advantages of the interest rate swaps, and they did not discuss the potential downside in detail.

Swaps are enormously complicated and risky financial derivatives. They are used - mostly by big businesses or international dealing rooms - to hedge against interest rate moves.

But in the period 2005-2008, New Zealand banks aggressively sold swaps to farmers as a supposedly less risky alternative to fixed interest loans, and a way for farmers to protect themselves from hikes in their mortgage repayments if interest rates went up.

When the financial crisis hit, and the interest rates went down, farmers started losing money. Many were forced to sell their farms, and some of them committed suicide.

Walker estimates up to 2000 New Zealand farmers lost up to $1 billion on swaps. They lost farms they had inherited from their fathers and planned to pass onto their children. Too many committed suicide. Walker spent the three years following the Farmers Weekly survey doggedly researching banks' sales of swaps to New Zealand farmers. And then she went to see the regulators.  Read more

The problem is not in the financial derivative itself, but it is that the risks were not well understood and explained to the customers.

Banks will be asking what are the lessons, what do we need to change to make sure going forward we don't have this happen with a different product. It's not so much just about the swaps but how do we make this not happen in the future.

Article Source Here: Another Misuse of Financial Derivatives

Monday, February 24, 2020

Accounting for Convertible Debt

Convertible debt is a type of loan that can be converted back to stock after some specified future date. When making an investment in convertible debt, both the issuer and investor are clear that there is a possibility of debt being converted into stock in the future. International Account Standard 32 deals with accounting for convertible debt.

A convertible debt instrument is an alternative financing solution, normally used by companies to finance their operation or working capital. The peculiar thing about this arrangement is that both parties can be on the same page regarding an eventual conversion of convertible debt into common stock of the company. In other words, both the issuer and the holder can convert the debt into equity at a future date. However, the former (i.e. the forced conversion) is rare, while the latter (conversion by the holder) is more common.

Sometimes, it is not easy for the company to issue convertible debt because the shareholder may oppose this management decision. This is due to the fact that upon conversion of the debt to equity, the shareholders’ stock values will decline because of the share dilution. Therefore management needs to pursue by performing a cost-benefit analysis as to why the issuance of convertible debt is beneficial to the company and its shareholders at the same time.

An example of a convertible debt

Normally, the company issues the bond at par, but sometimes it can offer a discount to investors in convertible debts as an incentive. For example, Mr. A purchased a convertible bond on January 01, 2020, for $500,000 at $500 each, whereas the par value of the bond is $550. Why has the company offered a discount on the issuance of the bond?  It is because investors will be likely to convert their debts into equities.

Why offering a discount?

Debt is senior to equity in terms of payback at times of liquidation. So if an investor is willing to forgo his debt right for equity, then obviously the company has to offer some incentive in order to keep its investment.

Moving forward in the above-mentioned example, if the maturity of the bond is December 31, 2024, this means that after 5 years, the investor can convert and the company can reduce its debts leverage and issue its stocks in place.

Why is issuing a convertible bond good for the company?

A company at times is in need of financing, but they don’t want to increase their debt leverage, therefore they offer a discount to investors for investing in their convertible debt instruments. Once the investment has been made, the company can save itself from a debt burden.

Why is purchasing a convertible bond good for investors?

Often times it is worthwhile to invest in a company’s stock but for some reason, the investor does not want to invest in equity immediately. Therefore a better way is to go for convertible debt and then convert it into equity at a future date. This way, the investor will be in the position of a shareholder. In addition, as discussed above, the investor can be offered a discount as an incentive for investing in convertible debt.

How to account for the convertible debt:

As both the company and investors have the same understanding that after a defined period of time they can convert the debt into common stocks, therefore as per IAS-32, when accounting for the convertible debt, the company has to recognize the issuance of convertible debts as a compound instrument.

Every year the interests accrued on the debt portion of the convertible debt shall be recognized in the profit and loss statement, and at the maturity of that instrument, all the loan shall be converted into equity at par and will be recognized in the capital of the company.

Post Source Here: Accounting for Convertible Debt

Thursday, February 6, 2020

Valuing European Options Using Monte Carlo Simulation-Derivative Pricing in Python

In a previous post, we presented a methodology for pricing European options using a closed-form formula. In this installment, we price these options using a numerical method. Specifically, we will use Monte Carlo simulation.

Recall that,

  • A call option gives the buyer the right, but not the obligation to buy an agreed quantity of the underlying from the seller at a future time for a given price. The payoff of the call option at expiration is max(ST-K,0),
  • A put option gives the buyer the right, but not the obligation to sell an agreed quantity of the underlying to the seller at a future time for a given price. The payoff of the put option at expiration is max(K -ST,0),

where ST  denotes the stock price at expiration and K is the strike price.

To price these options, we first simulate the price paths using the following Stochastic Differential Equation:

Monte Carlo simulation in pythonwhere

  • St is the stock price at time t,
  • σ denotes the stock volatility,
  • µ is the drift which equals the risk-free rate, and
  • dWt represents the standard normal random variable.

The simulation is carried out until the options’ maturity. We then apply the terminal payoff functions and calculate the mean values of all the payoffs. Finally, we discount the mean values to the present and thus obtain the option values.  For a more detailed presentation of the Monte Carlo method, see Reference [1].

The picture below shows the call and put option prices using 100000 simulations. All other parameters are the same as in the previous post.

options pricing in Python using Monte Carlo

We compare the above results to the ones obtained by using a third-party software and notice that they are in good agreement.

derivative pricing in python

In the next installment, we will present a methodology for pricing American options using Monte Carlo simulation.

References

[1] Glasserman, Paul; Monte Carlo Methods in Financial Engineering, Springer; 2003

 

Follow the link below to download the Python program.

Originally Published Here: Valuing European Options Using Monte Carlo Simulation-Derivative Pricing in Python

Friday, January 31, 2020

Black-Scholes-Merton Option Pricing Model-Derivative Pricing in Python

The Black-Scholes-Merton model is one of the earliest option pricing models that was developed in the late 1960s and published in 1973 [1,2]. The most important concept behind the model is the dynamic hedging of an option portfolio in order to eliminate the market risk. First, a delta-neutral portfolio is constructed, and then it is adjusted to stay delta neutral as the market fluctuates. Finally, we arrive at a Partial-Differential Equation for the value of the option.

derivative pricing in python

where

  • V denotes the option value at time t,
  • S  is the stock price,
  • r is the risk-free interest rate and,
  • σ is the stock volatility.

This equation is also called a diffusion equation, and it has closed-form solutions for European call and put options. For a detailed derivation and analytical formula, see Reference [3].

In this post, we focus on the implementation of the Black-Scholes-Merton option pricing model in Python. Closed-form formula for European call and put are implemented in a Python code. The picture below shows the prices of the call and  put options for the following market parameters:

  • Stock price: $45
  • Strike price: $45
  • Time to maturity: 1 year
  • Risk-free rate: 2%
  • Volatility: 25%

option pricing in python

We compare the above results to the ones obtained by using third-party software and notice that they are in good agreement.

derivative valuation in python

In the next installment, we will price these options using Monte Carlo simulation.

References:

[1] Black, Fischer; Myron Scholes (1973). The Pricing of Options and Corporate Liabilities. Journal of Political Economy. 81 (3): 637–654

[2] Merton, Robert C. (1973). Theory of Rational Option Pricing. Bell Journal of Economics and Management Science.

[3] Hull, John C. (2003). Options, Futures, and Other Derivatives. Prentice Hall

 

Follow the link below to download the Python program.

Originally Published Here: Black-Scholes-Merton Option Pricing Model-Derivative Pricing in Python

Sunday, January 26, 2020

Derivative Pricing and Valuation

A derivative is a financial instrument whose price is derived from an underlying asset. Thus, in very simple words, the price and value of a derivative stem from its underlying asset. The underlying asset can be anything that has some value. The most common forms of derivatives are forwards, futures, options, and swaps. Although other derivatives also exist, known as exotic derivatives, in this article we will focus on these four types of derivatives.

Although the pricing models differ for each type of derivative, the underlying principle is the same: financial derivatives are priced based on non-arbitrage principle, or the law of one price.

Forward Contracts

A forward contract is a private agreement between two parties giving the buyer an obligation to purchase an asset, and the seller an obligation to sell an asset at a set price at a future point in time. The underlying asset can be anything of value. In order to understand this better, let us look at a simple example.

Let us assume that the underlying asset here is a 10 kg bag of apples that have not been harvested yet. Technically, the underlying asset does not even exist, so it has no financial value. However, it is still possible to assign a price to it. Suppose that a farmer enters into a forward contract to sell the 10 kg bag of apples at a price of $20 in 3 months' time when the apples will be harvested. The farmer does this because he fears that the price of apples may go down in the future, resulting in a loss for him. So in order to set off or hedge the potential loss, the farmer enters into a forward contract with a buyer who agrees to buy the 10 kg bag of apples at the $20 price determined today. This means that 3 months from now, the forward contract will be executed at $20 regardless of the price in the future. In this manner both the buyer and seller transfer the risks to each other.

Forward contracts are often customized and trade over the counter.

Future Contracts

A futures contract is a legal agreement to buy or sell a particular commodity, or security at a predetermined price at a specified time in the future. Futures contracts are standardized for quality and quantity in order to facilitate trading on an organized exchange.  In addition, unlike forwards, the profit and loss of a futures contract is settled daily.

Despite the differences, the underlying principles for both futures and forwards are the same. The parties enter into a contract to buy or sell a particular underlying asset at a fixed price in the future, and the value of the contract is determined as the underlying asset is realized.

Option Contracts

An options contract is an agreement between a buyer and seller that gives the buyer of the option the right but not the obligation to buy or sell a particular asset at a later date at an agreed-upon price. Options contracts are often used in securities, commodities, and real estate transactions.

In principle, options are similar to forwards and futures but the difference is its holder has a right, but not an obligation to buy or sell the underlying asset. A call option gives the buyer the right to buy the asset at a predetermined price at or before maturity. A put option allows the holder to sell at a predetermined price at or before expiration.

Going back to our original example, suppose that the farmer has bought a put option that allows him to sell apples at $20. Three months later, if the price of 10 kg bag of apples becomes $24, then in this situation the farmer would have the option of not executing the contract at $20 and instead of selling the 10 kg bag of apples at the market price of $24. However, if the price of the apples falls down to $15, then the farmer can exercise the put option and sell the apples at the contractual price of $20.

Black-Scholes option pricing model

There are different models for valuing options. The earliest model is called the Black-Scholes option pricing model which provides an analytical, closed-form formula for valuing a European option. The model requires 5 important input parameters: spot price, strike price, volatility, risk-free rate, maturity.

Binomial option pricing model

Binomial option model is used to value American style options. The model relies on the assumption that for the next time period, a stock can move up, or down with certain probabilities. The major advantage of the binomial model is that it’s relatively simple. To value an option using this method, a tree of possible values of the underlying assets is built first. Then the option value is determined by calculating its payoffs at maturity and rolling back to time zero.

Swaps

A swap is a derivative contract through which two parties can exchange the cash flows or liabilities from two different financial instruments. The most common type of swap is interest rate swap, however, there exist other types such as commodity and currency swaps.

Interest rate swaps are used to manage and transfer interest rate risks. Let’s take a look at an example, a parent company operating in the USA has a subsidiary in Europe. The parent in the USA has to pay a fixed-rate loan in dollars whereas the subsidiary based in Europe has to pay a variable rate loan in Euro. The parent wants to pay a variable rate based on its cash flow situation whereas the subsidiary wants the fixed-rate loan because of the certainty of payments. Thus, both the parent and subsidiary will enter into an interest rate swap where the parent will end up paying the variable-rate euro loan and the subsidiary will end up paying the fixed-rate dollar loan.

An interest rate swap can be valued by decomposing it into fixed-rate and floating-rate bonds. Essentially, the value of each leg is determined by calculating the Net Present Value of future cash flows. An alternative way to value an interest rate swap is to view it as a series of Forward Rate Agreements.

Article Source Here: Derivative Pricing and Valuation

Monday, January 20, 2020

Are Collateralized Loan Obligations the New Debt Bombs? Part Two

In a previous post, we discussed the risks of Collateralized Loan Obligations, a type of complex credit derivatives.  Since then, the trend in securitizing loans is still upward. Nowadays, not only performing loans but also non-performing loans are being securitized and sold to investors.derivative valuation of illiquid load, corporate bond, debt

A non-performing loan is a loan that is in default or close to being in default. Depending on the terms of the contract, a loan can become non-performing after being in default for 90 days. Recently, independent.ie reported

Non-banks - including vulture funds - that have amassed billions of euro of non performing loan (NPL) portfolios are likely to securitise some of those loan either to lower their own financing costs or simply to raise cash...This trend already appears to be underway, with Scope noting a €419.8m deal by Lone Star in the third quarter of last year when it raised funds by borrowing against the value of portfolio of performing and non-performing loans. Read more

Securitization is a proactive measure that allows a financial institution to transfer the risks of a portfolio of non-performing loans.

The massive bad-loan sales in recent years began with boom era commercial property and developer loans that have now largely been removed from bank balance sheet. Lenders here now have what the agency called “relatively granular NPL stock” mainly of SME loans and residential mortgages. These are significantly easier to securitise than CRE portfolios, and if the “No Consent, No Sale” bill became law, so called synthetic securitisation remains a viable risk-transfer mechanism. Synthetic securitisation involves banks buying complex financial derivatives to insure against the risk of borrower defaults.

However, there are many issues associated with managing the risks of these non-performing loans, notably the lack of standard definitions and valuation methodology.  A solid regulatory framework should be developed to ensure market transparency and to facilitate risk management.

Originally Published Here: Are Collateralized Loan Obligations the New Debt Bombs? Part Two

Sunday, December 29, 2019

Valuing a Convertible Bond-Derivative Pricing in Python

In a previous post, we presented a theoretical framework for pricing convertible bonds and preferred shares.  We also provided an example of pricing a convertible bond in Excel. In this installment, we present an example of pricing a convertible bond in Python.

Recall that a convertible bond (or preferred share) is a hybrid security, part debt, and part equity. Its valuation is derived from both the level of interest rates and the price of the underlying equity. Several convertible bond pricing approaches are available to value these complex hybrid securities such as Binomial Tree, Partial Differential Equation and Monte Carlo simulation. One of the earliest approaches was the Binomial Tree model originally developed by Goldman Sachs and this model allows for an efficient implementation with high accuracy. The Binomial Tree model is flexible enough to support the implementation of bespoke exotic features such as redemption and conversion by the issuer, lockout periods, conversion and retraction by the shareowner.

Details of the hypothetical convertible bond are as follows:

Valuation date:  14 February 2017

Issue date: 1 January 2017

Maturity: 1 January 2019

Coupon: 3%

Credit spread: 0.75%

Risk-free rate: 2%

Stock price: 52

Volatility: 15%

Dividend: 0%

The picture below shows the bond price obtained by using a third-party program.

pricing convertible bonds

Using the Python program, we obtain a clean price of 113.27

Derivative valuation of convertible bonds

Follow the link below to download the Python program.

Originally Published Here: Valuing a Convertible Bond-Derivative Pricing in Python

Saturday, November 30, 2019

How Negative Interest Rates Affect Derivative Pricing Models

As negative interest rates started popping up around the world, quantitative analysts and traders have been asking a mundane but fundamental question: How to price trillions of dollars of financial instruments when their complex pricing models don’t work with negative numbers?

Intuitively, we would say that negative interest rates will affect the prices of interest-rate sensitive instruments such as interest rate swaps and swaptions the most. Indeed, Bloomberg recently elaborated:

The issues are most apparent in the market for interest-rate swaps. (This market allows professional investors to lock in interest rates and lets speculators bet on whether rates on bonds or loans will rise or fall.) That’s because the Black 76 model, the main tool to price options for interest-rate derivatives, and its variants are so-called log-normal forward models. For those who aren’t math nerds, it can essentially be boiled down to this: the formula breaks because it requires users to calculate a logarithm, and a logarithm of a negative number is undefined, or meaningless. Read more

derivative valuation derivative pricing of financial derivatives

As far as equity derivatives are concerned, the impact will not be as dramatic as with interest-rate sensitive instruments. However, some subtleties in the mathematical approaches can still have an impact on the accuracy of equity-derivative valuation models.

Derivatives traders in equities, on the other hand, have it relatively easy by comparison… sub-zero risk-free rates can cause “approximation errors” for certain kinds of American-style options, which may lead them to become mispriced compared with those used in Europe. Take an American call option on a stock without dividends, for example. Its value will “only equal the European option when the risk-free rate is positive”

Specifically, when we price an American call option, we often argue that if the underlying stock pays no dividend, then it’s never optimal to exercise earlier, i.e. the price of an American call option is equal to its European counterpart.

To see this, recall that there exists a lower bound for an American call option on a non-dividend paying stock [1]:

derivative valuation of equity derivative pricing model

                 where C denotes the price of an American call option

                 S0 is the stock price

                 K is the strike price

                T  is the time to maturity

                r  is the risk-free interest rate

From this equation, it follows that when r> 0, C >= S0-K. This means that the American call’s price is always greater than its intrinsic value, therefore it’s never optimal to exercise before maturity.

However, when r<=0, the above condition will no longer be true, and the American call option can be exercised earlier. This will impact the mathematical models that price American options.

 

References

[1] J.C. Hull, Options, Futures, and Other Derivatives, 9th Edition, 2018

Post Source Here: How Negative Interest Rates Affect Derivative Pricing Models

Tuesday, September 3, 2019

Are Convertible Bonds Really Attractive?

Investors in South Korea have lost money in a complex derivative linked to constant maturity swap.  In search for higher yields, they are also putting money into another complex financial instrument, convertible bonds. Bloomberg recently reported,

Sales of convertibles, which pay low coupons and let investors convert into stock if the issuer’s shares rise enough, totaled about 3.1 trillion won ($2.5 billion) through July, compared with a record 4.1 trillion won in all of 2018, according to data from Korea Capital Market Institute. Local hedge funds are the main buyers of the bonds, which are usually sold by small- and medium-sized firms without credit ratings. Read more

This convertible bond has a complex feature, and the regulators are worrying that investors will lose money if they don’t fully understand the financial instrument.

Despite near-zero coupon payouts for most of the securities, investors are lured by a “refixing” clause that is unique to Korean convertibles. The term allows a reduction of almost 30% from the initial conversion price if the underlying stock falls.

Regulators are already worried about retail investors owning things they don’t understand. They’re planning a probe into sales of derivative products that carry the risk of losing all their value depending on moves in overseas market rates.

Investing in convertible bonds can add value to a portfolio. However, valuing a convertible bond and managing the risks is not trivial.

A convertible bond (or preferred share) is a hybrid security, part debt and part equity. Its valuation is derived from both the level of interest rates and the price of the underlying equity. Several convertible bond pricing approaches are available to value these complex hybrid securities such as Binomial Tree, Partial Differential Equation and Monte Carlo simulation. One of the earliest approaches was the Binomial Tree model originally developed by Goldman Sachs and this model allows for an efficient implementation with high accuracy. The Binomial Tree model is flexible enough to support the implementation of bespoke exotic features such as redemption and conversion by the issuer, lockout periods, conversion and retraction by the share owner etc.

Originally Published Here: Are Convertible Bonds Really Attractive?

Monday, August 26, 2019

Complex Derivative Linked to Constant Maturity Swap

Yonhap recently reported that South Korea’s investors appear to have lost money by investing in complex derivative products.

https://en.yna.co.kr/view/AEN20190819004400320The Financial Supervisory Service (FSS) said 3,654 individual investors and 188 businesses were found to have bought 822.4 billion won (US$677.8 million) worth of so-called “derivatives-linked fund” options sold by banks as of Aug. 7.

Such derivative products are structured to track the performance of constant maturity swap, or a swap that allows the purchaser to fix the duration of received flows on a swap, of Treasury bonds of the United States and Britain and the yield of Germany's 10-year state bonds.

The options turned into losers as bond yields in the U.S., Britain and Germany have unexpectedly sank amid speculations that central banks in major economies may aggressively slash their interest rates.

Media reports said some investors bought the options because they were believed to have invested into government bonds of the U.S., Britain and Germany. Read more…

It’s always prudent to invest in what you know. However, in this case, the financial product is probably too complex for the ordinary investors to understand. Its return is linked to the performance of a constant maturity swap.

A constant maturity swap is an interest rate swap where the interest rate on one leg is reset periodically, but with reference to a market swap rate rather than LIBOR. The other leg of the swap is generally LIBOR, but may be a fixed rate or potentially another constant maturity rate. Constant maturity swaps can either be single currency or cross currency swaps. Therefore, the prime factor for a constant maturity swap is the shape of the forward implied yield curves. A single currency constant maturity swap versus LIBOR is similar to a series of differential interest rate fixes (or "DIRF") in the same way that an interest rate swap is similar to a series of forward rate agreements. Valuation of constant maturity swaps depend on volatilities of different forward rates and therefore requires a stochastic yield curve model or some approximated methodology like a convexity adjustment ... Read more...

Originally Published Here: Complex Derivative Linked to Constant Maturity Swap