Go to Quantitative Methods

Topics

Table of Contents



Introduction


We will cover:



Lognormal Distribution and Continuous Compounding


The Lognormal Distribution


If x is a random variable that is normally distributed, then to create a lognormal distribution of x we take ex and plot the values on a graph.

Pasted image 20250908102514.png

The properties of a lognormal distribution are:

Both normal and lognormal distributions are important for finance professionals.

A normal distribution is typically used to model asset returns, because returns generally vary about the mean, with a high probability of returns being close to the mean. Returns can also sometimes be negative.

However, asset prices do not vary equally about a mean price, since the probability of extreme changes in price decreases as the price approaches zero. This means asset prices will not form a symmetrical graph like that of the normal distribution.

Instead, asset prices follow a lognormal distribution, which is skewed to the right and cannot be negative.

Continuously Compounded Rates of Return


The continuously compounded rate of return can be calculated as the natural logarithm of the ending price over the beginning price.

Rc=ln(PtP0)
Tip

A property of the continuously compounded rate of return is that they are additive.

The continuously compounded return from period 0 to period T is the sum of the incremental one-period returns between 0 and T.

r(0,T)=r(T1,T)+r(T2,T1)++r(0,1)
Problem

The weekly closing prices of a share are as follows:

  • 1 August → 112
  • 8 August → 160
  • 15 August → 120

Calculate the continuously compounded return of this share for the period August 1 to August 15.

Solution:
The continuously compounded return from period 0 to period T is also equal to the sum of the incremental one-period continuously compounded returns, which in this case are weekly returns.

Continuously compounded return = 35.67% + –28.77% = 6.90%

Continuously compounded returns are used in many asset pricing models, as well as in risk management.

Many investment applications make the assumption that returns are independently and identically distributed (i.i.d.).

Calculating Volatility
The volatility (measured in terms of standard deviation) of the continuously compounded returns on an asset is typically stated as an annualized number.

However, in practice volatility is often estimated using a historical series of continuously compounded daily return.

Tip

To convert daily volatility into annual volatility, we annualize based on 250 days in a year (the approximate number of business days that financial markets are open for trading).

For example, if daily volatility is 0.01, the annual volatility will be 0.01 = 0.1581.



Monte Carlo Simulation


Monte Carlo simulation is a computer simulation used to simulate possible security prices based on risk factors.

Monte Carlo simulation is widely used to estimate risk and return in investment applications. It is also used as a tool for valuing complex securities with embedded options where no analytic pricing formula is available (e.g. Mortgage backed securities).

A limitation of Monte Carlo simulation is that it is fairly complex and will provide answers that are no better than the assumptions. Also, simulation is not an analytical method but a statistical one. It cannot provide more insight into cause-and-effect relationships like analytical methods.

Monte Carlo Simulation for Valuing a Contingent Claim (an Option)


Pasted image 20250908103729.png



Bootstrapping


In an earlier lesson, we learnt how to find the standard error of the sample mean based on the central limit theorem.

We will now cover resampling: a computational tool in which we repeatedly draw samples from the original observed data sample for the statistical inference of population parameters.

A popular resampling method is bootstrap.

Bootstrap


Pasted image 20250908103955.png

The technique is used when we do not know what the actual population looks like.

We simply have a sample of size n drawn from the population. Since the random sample is a good representation of the population, we can simulate sampling from the population by sampling from the observed sample i.e., we treat the randomly drawn sample as if it were the actual population.

Under this technique, samples are constructed by drawing observations from the large sample (of size n) one at a time and returning them to the data sample after they have been chosen. This allows a given observation to be included in a given small sample more than once. This sampling approach is called sampling with replacement.

If we want to calculate the standard error of the sample mean, we take many resamples and calculate the mean of each resample. We then construct a sampling distribution with these resamples. The bootstrap sampling distribution will approximate the true sampling distribution and can be used to estimate the standard error of the sample mean.

Similarly, the bootstrap technique can also be used to construct confidence intervals for the statistic or to find other population parameters, such as the median.

Bootstrap is a simple but powerful technique that is particularly useful when no analytical formula is available to estimate the distribution of estimators.