SlideShare uma empresa Scribd logo
1 de 20
Value at Risk Engine
To compute the Initial Margin requirements for FX Forwards using
Historical Simulation
Name:
Company:
Area:
College:

Lov Loothra
Genpact
Finance
IMT Ghaziabad
Introduction & Agenda
Project deals with optimal computation of the Historical Value at
Risk (Historical VaR or HVaR) of FX Forward Contracts in order to
estimate Initial Margin requirements.

A
G
E
N
D
A

What is Value at Risk?
Why use VaR?
Techniques for computing VaR
Detailed description of the methodology used in the project
References
What is Value at Risk?
• A statistical tool which gives a measure of the market risk of an investment
• Requires 3 quantities to express completely:
i. The holding period, t
ii. The potential loss, x
iii. The probability for the said loss, p
• VaR is stated to be no more than x for a holding period of t with a probability of p

VaR @ 99% Confidence

Holding period of 10 days
$1 Million

$50,000
Why use VaR?
•

A popular and traditional measure of risk is Volatility

•

Problem: it does not care about the direction of an investment's movement

•

For investors, risk is about the odds of losing money

•

VaR fits the bill perfectly because we can use it to answer questions like
• "What is my worst-case scenario?"
• "How much could I lose in a really bad month?"

•

Usage of VaR grew tremendously post October 1994 with the release of J.P. Morgan’s
RiskMetric™ system

•

Basel Committee on Banking Supervision proposed in April 1995 to allow banks to calculate their
capital requirements for market risk using VaR

•

In our project, VaR estimate for FX Forward Contracts & IRS is used to determine Initial Margin
requirements

Initial Margin is a collateral that the holder of a financial instrument has to deposit to cover some or all of the
credit risk of their counterparty. It is usually supposed to be large enough to cope with one-day losses on most
days. As VaR is capable of giving an estimate of worst case scenarios, we can use it to help the firm estimate initial
margin requirements.
Techniques for computing VaR

Variance-Covariance method
Monte Carlo Simulation

Historical method
Variance-Covariance Method
Monte-Carlo Simulation
• Geometric Brownian motion is applied to stocks in order to simulate future scenarios.
This is modeled as:

dSt = μ St dt + σ St dWt
Here,

St
μ
σ
Wt

stock price at time t
is the ‘drift’ of the stock
is the ‘volatility’ of the stock
is the stochastic randomness factor

• Stochastic Randomness is simulated by using a pseudo random number generator (we
used the Mersenne Twister in our implementation)
• Drift, volatility and initial price of the stock are fed into the model and a large number
of simulations are run to generate simulated ‘paths’ for the stock

• P&Ls are calculated for the simulated values & sorted in descending order of losses
• Finally, the value at pth percentile of the P&Ls is selected as the VaR
Monte-Carlo Simulation: Implementation
Historical Simulation
• Non-parametric approach to VaR estimation: makes no assumption about the
distribution of the underlying observations

• Works by using historical values of assets returns over a large period of time and
applying them to the current value to generated ‘simulated’ values
• Simulated values are used to compute P&Ls w.r.t. the base price at computation date
• P&Ls are then sorted and the value lying at a certain percentile (based on the required
confidence interval) gives us the VaR estimate
• Example: For 1000 simulated values and a confidence interval of 99%, the observation
that determines VaR would be the (1% x 1000)th = 10th observation

• We used a modified historical simulation methodology in our project to compute FX
Forward margins the details of which are given in the following slides
Detailed Methodology
• Obtain historical rates over the last 10 years from a reliable source for the currency
pair for all required tenor points

• First 5 years are inputs pertaining to volatility computations whereas the next 5 are for
the actual simulation
• Assuming we have 16 tenor points, we get the following 5-year zero-rate matrix:
R1, 1
R1, 2
R1, 3
R2, 1
R2, 2
R2, 3
R3, 1
R3, 2
R3, 3
…
…
…
R1265, 1 R1265, 2 R1265, 3

…
…
…
…
…

R1, 16
R2, 16
R3, 16
…
R1265, 16

• Compute the 5-day Log Return Matrix by taking the log of ratio of the continuously
compounded zero rates and the fifth-previous business day
rt,j = log (Rt, j / Rt–5, j)
Detailed Methodology contd.
• Applying the log returns formula to our matrix, we get:
r1, 1
r2, 1
r3, 1
…

r1, 2
r2, 2
r3, 2
…

r1, 3
r2, 3
r3, 3
…

r1260, 1

r1260, 2

r1260, 3

…
…
…
…
…

r1, 16
r2, 16
r3, 16
…

r1260, 16

• Compute a time series of volatility forecasts: EWMA (exponentially-weighted moving
average) was used to construct a model capable of reacting to changes in the
underlying volatility:
σ2t, j = (1 – λ) r2t–1, j + λσ2 t–1, j
Here,

σ
r
λ

volatility forecast
log return
time decay coefficient of historical log returns

• To avoid model error, first 5 years of data was used to generate a seed value for the
EWMA forecast with the first value seeded as the square of the returns
Detailed Methodology contd.
• Applying the aforementioned transformation to our matrix, we get:
σ1, 1
σ2, 1
σ3, 1
…
σ1260, 1

σ1, 2
σ2, 2
σ3, 2
…
σ1260, 2

σ1, 3
σ2, 3
σ3, 3
…
σ1260, 3

…
…
…
…
…

σ1, 16
σ2, 16
σ3, 16
…
σ1260, 16

• Volatility Smoothing is performed to reduce noise and account for unwarranted
fluctuations in margins and is done by averaging the forecasted volatility over a short
look-back horizon:
σ't, j = σ't–1, j + α (σt, j – σ't–1, j)
α = 2 / (L + 1)
Here,

σ'
α
L

smoothened volatility
smoothing coefficient
look-back horizon (10 days in our project)

• Introduce the volatility floor around the least value of the implied volatility observed
in a short period to prevent low margin values
Detailed Methodology contd.
• Flooring is done using the following equation:
σ''t, j = max { σ't, j , X% }

Here,

σ''
σ'
X%

modified volatility after the flooring
smoothened volatility
97th percentile of recent sample of volatilities

• Calculate scaling coefficients by dividing the forecasted volatility by the historically
determined EWMA volatility:
Ct, j = σ''t, j / σ't, j
• After applying the above formula to our matrix, we get:
C1, 1
C1, 2
C1, 3
C2, 1
C2, 2
C2, 3
C3, 1
C3, 2
C3, 3
…
…
…
C1260, 1 C1260, 2 C1260, 3

…
…
…
…
…

C1, 16
C2, 16
C3, 16
…
C1260, 16
Detailed Methodology contd.
• Calculate scaled returns by taking the product of the scaling coefficient and the
historical 5-day log return for each scenario and tenor point

• We generate a matrix of scaled returns as follows:
r1, 1
r2, 1
r3, 1
…

r* =

r1, 3
r2, 3
r3, 3
…

r1260, 1

r* =

r1, 2
r2, 2
r3, 2
…
r1260, 2

r1260, 3

C1, 1 x r1, 1
C2, 1 x r2, 1
C3, 1 x r3, 1
…
C1260, 1 x r1260, 1

… r1, 16
… r2, 16
… r3, 16
…
…
… r1260, 16

C1, 2 x r1, 2
C2, 2 x r2, 2
C3, 2 x r3, 2
…
C1260, 2 x r1260, 2

x

C1, 1
C2, 1
C3, 1
…
C1260, 1

C1, 2
C2, 2
C3, 2
…
C1260, 2

C1, 3 x r1, 3
C2, 3 x r2, 3
C3, 3 x r3, 3
…
C1260, 3 x r1260, 3

• Here, r* represents the matrix of scaled log returns

C1, 3
C2, 3
C3, 3
…
C1260, 3

… C1, 16
… C2, 16
… C3, 16
…
…
… C1260, 16

…
C1, 16 x r1, 16
…
C2, 16 x r2, 16
…
C3, 16 x r3, 16
…
…
… C1260, 16 x r1260, 16
Detailed Methodology contd.
• Compute the Shocked US Zero Curves and Shocked FX Forward Curves by applying the
matrix of scaled log returns to the base curves (US Zero curve and FX Forward curve)
as on the margin date:
R*t, j = R T, j · e ^ (r*t, j)
Here,

R*t, j
RT, j
r*t, j

shocked curve of the jth tenor point
base curve on the margin date
scaled log returns at time t & tenor point j

• Base curve matrix, R, where t = the margin date for all tenors is [R1, R2, … , R16]; the
final matrix of 1260 scenarios is obtained as shown below:

R* =

R1 e^(r*1, 1)
R1 e^(r*2, 1)
R1 e^(r*3, 1)
…
R1 e^(r*1260, 1)

R2 e^(r*1, 2)
R2 e^(r*2, 2)
R2 e^(r*3, 2)
…
R2 e^(r*1260, 2)

R3 e^(r*1, 3)
R3 e^(r*2, 3)
R3 e^(r*3, 3)
…
R3 e^(r*1260, 3)

…
…
…
…
…

R16 e^(r*1, 16)
R16 e^(r*2, 16)
R16 e^(r*3, 16)
…
R16 e^(r*1260, 16)
Detailed Methodology contd.
• Compute Portfolio Value from the shocked forward curve for all scenarios:
SC1, 1
SC2, 1
SC3, 1
…
SC1260, 1

SC1, 2
SC2, 2
SC3, 2
…
SC1260, 2

SC1, 3
SC2, 3
SC3, 3
…
SC1260, 3

…
…
…
…
…

SC1, 16
SC2, 16
SC3, 16
…
SC1260, 16

⇒

PV1
PV2
PV3
…
PV1260

• Compute the portfolio Profit/Loss (P&L) by taking the difference between the
Portfolio Value for each scenario & the Base Portfolio Value on the margin date:
PV1

P&L1

PV2
PV3

P&L2
P&L3

…
PV1260

– Base Price margin-date =

…
P&L1260

• Sort the P&Ls in ascending order of losses and use the required confidence interval
(99.7 in our project) to extract the required margin:
Required value of Initial Margin = P&L0.3th
FX – Forward HVAR Implementation

Shocked US Zero Curve
Status and Future Scope
• The tool that I’ve developed is now capable of accepting new trades via an input form
and computing the Initial Margin for EURUSD FX Forward Contracts

• I’ve added dynamic support for up to 19 tenor points and potentially unlimited
historical data
• Support for other currency pairs would need to be added
• We also used a similar methodology to compute initial margin requirements for
Interest Rate Swaps
References
1. Linsmeier, Thomas J. and Pearson, Neil D. “Risk Measurement: An Introduction to
Value at Risk”, University of Illinois at Urbana-Champaign, July 1996

2. J. P. Morgan/Reuters “RiskMetrics™: Technical Document”, Fourth Edition, 17
December 1996
3. Elliot, Timothy R. “Certification of the Change in Performance Bond Methodology from
SPAN to HVaR for cleared OTC FX Spot, Forward and Swap Transactions”, Chicago
Mercantile Exchange Rule Submission, 30 March 2012
THANK YOU!

Mais conteúdo relacionado

Mais procurados

Chapter 3 - Risk Management - 2nd Semester - M.Com - Bangalore University
Chapter 3 - Risk Management - 2nd Semester - M.Com - Bangalore UniversityChapter 3 - Risk Management - 2nd Semester - M.Com - Bangalore University
Chapter 3 - Risk Management - 2nd Semester - M.Com - Bangalore UniversitySwaminath Sam
 
VaR Or Expected Shortfall
VaR Or Expected ShortfallVaR Or Expected Shortfall
VaR Or Expected ShortfallAlex Kouam
 
Report - Risk Management in Banks
Report - Risk Management in BanksReport - Risk Management in Banks
Report - Risk Management in BanksSharad Srivastava
 
Interest Rate Risk
Interest Rate Risk Interest Rate Risk
Interest Rate Risk nikatmalik
 
Value at Risk (VaR), Intro
Value at Risk (VaR),  IntroValue at Risk (VaR),  Intro
Value at Risk (VaR), Introdavidharper
 
Coupling of Market Risk,Credit Risk, and Liquidity Risk
Coupling of Market Risk,Credit Risk, and Liquidity RiskCoupling of Market Risk,Credit Risk, and Liquidity Risk
Coupling of Market Risk,Credit Risk, and Liquidity RiskGateway Partners
 
Asset Liability Management
Asset Liability Management Asset Liability Management
Asset Liability Management Anshika Mehrotra
 
GSB711-Lecture-Note-04-Valuation-of-Bonds-and-Shares
GSB711-Lecture-Note-04-Valuation-of-Bonds-and-SharesGSB711-Lecture-Note-04-Valuation-of-Bonds-and-Shares
GSB711-Lecture-Note-04-Valuation-of-Bonds-and-SharesUniversity of New England
 
Risk management basel ii
Risk management basel iiRisk management basel ii
Risk management basel iiUjjwal 'Shanu'
 
18.2 internal ratings based approach
18.2   internal ratings based approach18.2   internal ratings based approach
18.2 internal ratings based approachcrmbasel
 

Mais procurados (20)

Chapter 3 - Risk Management - 2nd Semester - M.Com - Bangalore University
Chapter 3 - Risk Management - 2nd Semester - M.Com - Bangalore UniversityChapter 3 - Risk Management - 2nd Semester - M.Com - Bangalore University
Chapter 3 - Risk Management - 2nd Semester - M.Com - Bangalore University
 
Chapter 21
Chapter 21Chapter 21
Chapter 21
 
Market Risk
Market RiskMarket Risk
Market Risk
 
all about libor
all about liborall about libor
all about libor
 
Credit market
Credit marketCredit market
Credit market
 
VaR Or Expected Shortfall
VaR Or Expected ShortfallVaR Or Expected Shortfall
VaR Or Expected Shortfall
 
Credit risk
Credit riskCredit risk
Credit risk
 
Report - Risk Management in Banks
Report - Risk Management in BanksReport - Risk Management in Banks
Report - Risk Management in Banks
 
Value at Risk
Value at RiskValue at Risk
Value at Risk
 
Interest Rate Risk
Interest Rate Risk Interest Rate Risk
Interest Rate Risk
 
Fundamentals of Market Risk Management by Dr. Emmanuel Moore ABOLO
Fundamentals of Market Risk Management by Dr. Emmanuel Moore ABOLOFundamentals of Market Risk Management by Dr. Emmanuel Moore ABOLO
Fundamentals of Market Risk Management by Dr. Emmanuel Moore ABOLO
 
Market Risk Modelling
Market Risk ModellingMarket Risk Modelling
Market Risk Modelling
 
Value at Risk (VaR), Intro
Value at Risk (VaR),  IntroValue at Risk (VaR),  Intro
Value at Risk (VaR), Intro
 
Coupling of Market Risk,Credit Risk, and Liquidity Risk
Coupling of Market Risk,Credit Risk, and Liquidity RiskCoupling of Market Risk,Credit Risk, and Liquidity Risk
Coupling of Market Risk,Credit Risk, and Liquidity Risk
 
Credit risk models
Credit risk modelsCredit risk models
Credit risk models
 
Asset Liability Management
Asset Liability Management Asset Liability Management
Asset Liability Management
 
GSB711-Lecture-Note-04-Valuation-of-Bonds-and-Shares
GSB711-Lecture-Note-04-Valuation-of-Bonds-and-SharesGSB711-Lecture-Note-04-Valuation-of-Bonds-and-Shares
GSB711-Lecture-Note-04-Valuation-of-Bonds-and-Shares
 
Risk management basel ii
Risk management basel iiRisk management basel ii
Risk management basel ii
 
18.2 internal ratings based approach
18.2   internal ratings based approach18.2   internal ratings based approach
18.2 internal ratings based approach
 
Mishkin fmi9ge ppt_c01
Mishkin fmi9ge ppt_c01Mishkin fmi9ge ppt_c01
Mishkin fmi9ge ppt_c01
 

Destaque

Qopius A.I Global Asset Allocation model
Qopius A.I Global Asset Allocation modelQopius A.I Global Asset Allocation model
Qopius A.I Global Asset Allocation modelAMINE BENNIS
 
Credit Risk Losses | Real Losses Are they inconsistent?
Credit Risk Losses | Real Losses Are they inconsistent?Credit Risk Losses | Real Losses Are they inconsistent?
Credit Risk Losses | Real Losses Are they inconsistent?László Árvai
 
Stress Testing the Loan Portfolio
Stress Testing the Loan PortfolioStress Testing the Loan Portfolio
Stress Testing the Loan PortfolioLibby Bierman
 
Stress Testing
Stress TestingStress Testing
Stress TestingAmit Verma
 
Supervisory Review Readiness post CCAR March 2015 Results- Somanshu Jend
Supervisory Review Readiness post CCAR March 2015 Results- Somanshu JendSupervisory Review Readiness post CCAR March 2015 Results- Somanshu Jend
Supervisory Review Readiness post CCAR March 2015 Results- Somanshu JendSomanshu Jend
 
Credit risk management @ state bank of india project report mba finance
Credit risk management @ state bank of india project report mba financeCredit risk management @ state bank of india project report mba finance
Credit risk management @ state bank of india project report mba financeBabasab Patil
 
The value at risk
The value at risk The value at risk
The value at risk Jibin Lin
 
Credit Risk Management Presentation
Credit Risk Management PresentationCredit Risk Management Presentation
Credit Risk Management PresentationSumant Palwankar
 

Destaque (10)

Qopius A.I Global Asset Allocation model
Qopius A.I Global Asset Allocation modelQopius A.I Global Asset Allocation model
Qopius A.I Global Asset Allocation model
 
IT Risk Simulation
IT Risk SimulationIT Risk Simulation
IT Risk Simulation
 
Credit Risk Losses | Real Losses Are they inconsistent?
Credit Risk Losses | Real Losses Are they inconsistent?Credit Risk Losses | Real Losses Are they inconsistent?
Credit Risk Losses | Real Losses Are they inconsistent?
 
FENG CCAR DFAST BASELIII_real(2)
FENG CCAR DFAST BASELIII_real(2)FENG CCAR DFAST BASELIII_real(2)
FENG CCAR DFAST BASELIII_real(2)
 
Stress Testing the Loan Portfolio
Stress Testing the Loan PortfolioStress Testing the Loan Portfolio
Stress Testing the Loan Portfolio
 
Stress Testing
Stress TestingStress Testing
Stress Testing
 
Supervisory Review Readiness post CCAR March 2015 Results- Somanshu Jend
Supervisory Review Readiness post CCAR March 2015 Results- Somanshu JendSupervisory Review Readiness post CCAR March 2015 Results- Somanshu Jend
Supervisory Review Readiness post CCAR March 2015 Results- Somanshu Jend
 
Credit risk management @ state bank of india project report mba finance
Credit risk management @ state bank of india project report mba financeCredit risk management @ state bank of india project report mba finance
Credit risk management @ state bank of india project report mba finance
 
The value at risk
The value at risk The value at risk
The value at risk
 
Credit Risk Management Presentation
Credit Risk Management PresentationCredit Risk Management Presentation
Credit Risk Management Presentation
 

Semelhante a Value at Risk Engine

AN Intelligent Realtime multiple vessel collision risk assessment system
AN Intelligent Realtime multiple vessel collision risk assessment system AN Intelligent Realtime multiple vessel collision risk assessment system
AN Intelligent Realtime multiple vessel collision risk assessment system Syed Ahmad Chan Bukhari, PhD
 
IRJET - Candle Stick Chart for Stock Market Prediction
IRJET - Candle Stick Chart for Stock Market PredictionIRJET - Candle Stick Chart for Stock Market Prediction
IRJET - Candle Stick Chart for Stock Market PredictionIRJET Journal
 
Affine cascade models for term structure dynamics of sovereign yield curves
Affine cascade models for term structure dynamics of sovereign yield curvesAffine cascade models for term structure dynamics of sovereign yield curves
Affine cascade models for term structure dynamics of sovereign yield curvesLAURAMICHAELA
 
Bbc2 eb x-bar---r-chart-example
Bbc2 eb x-bar---r-chart-exampleBbc2 eb x-bar---r-chart-example
Bbc2 eb x-bar---r-chart-examplesundar79
 
Risk-Analysis.pdf
Risk-Analysis.pdfRisk-Analysis.pdf
Risk-Analysis.pdfMaheshBika
 
LFM Pedersen Calibration - Cappelli
LFM Pedersen Calibration - CappelliLFM Pedersen Calibration - Cappelli
LFM Pedersen Calibration - CappelliJoel Cappelli
 
Stochastic Loss Reserving-General Insurance
Stochastic Loss Reserving-General InsuranceStochastic Loss Reserving-General Insurance
Stochastic Loss Reserving-General InsuranceSyed Danish Ali
 
2008 implementation of va r in financial institutions
2008   implementation of va r in financial institutions2008   implementation of va r in financial institutions
2008 implementation of va r in financial institutionscrmbasel
 
Chapter 2 fx rate risk for currrency portfolios
Chapter 2   fx rate risk for currrency portfoliosChapter 2   fx rate risk for currrency portfolios
Chapter 2 fx rate risk for currrency portfoliosQuan Risk
 
RIC-NN: A Robust Transferable Deep Learning Framework for Cross-sectional Inv...
RIC-NN: A Robust Transferable Deep Learning Framework for Cross-sectional Inv...RIC-NN: A Robust Transferable Deep Learning Framework for Cross-sectional Inv...
RIC-NN: A Robust Transferable Deep Learning Framework for Cross-sectional Inv...Kei Nakagawa
 
Traffic state estimation with multi-sensor data for large networks with macro...
Traffic state estimation with multi-sensor data for large networks with macro...Traffic state estimation with multi-sensor data for large networks with macro...
Traffic state estimation with multi-sensor data for large networks with macro...YazanSafadi
 

Semelhante a Value at Risk Engine (20)

Asian basket options
Asian basket optionsAsian basket options
Asian basket options
 
AN Intelligent Realtime multiple vessel collision risk assessment system
AN Intelligent Realtime multiple vessel collision risk assessment system AN Intelligent Realtime multiple vessel collision risk assessment system
AN Intelligent Realtime multiple vessel collision risk assessment system
 
IRJET - Candle Stick Chart for Stock Market Prediction
IRJET - Candle Stick Chart for Stock Market PredictionIRJET - Candle Stick Chart for Stock Market Prediction
IRJET - Candle Stick Chart for Stock Market Prediction
 
Control charts
Control chartsControl charts
Control charts
 
Spc la
Spc laSpc la
Spc la
 
Affine cascade models for term structure dynamics of sovereign yield curves
Affine cascade models for term structure dynamics of sovereign yield curvesAffine cascade models for term structure dynamics of sovereign yield curves
Affine cascade models for term structure dynamics of sovereign yield curves
 
R is for Risk 2 Risk Management using R
R is for Risk 2 Risk Management using RR is for Risk 2 Risk Management using R
R is for Risk 2 Risk Management using R
 
Bbc2 eb x-bar---r-chart-example
Bbc2 eb x-bar---r-chart-exampleBbc2 eb x-bar---r-chart-example
Bbc2 eb x-bar---r-chart-example
 
VaR analysis for Mutual funds
VaR  analysis for Mutual fundsVaR  analysis for Mutual funds
VaR analysis for Mutual funds
 
Risk-Analysis.pdf
Risk-Analysis.pdfRisk-Analysis.pdf
Risk-Analysis.pdf
 
LFM Pedersen Calibration - Cappelli
LFM Pedersen Calibration - CappelliLFM Pedersen Calibration - Cappelli
LFM Pedersen Calibration - Cappelli
 
Financial Forecasting Using Wavelet Analysis
Financial Forecasting Using Wavelet AnalysisFinancial Forecasting Using Wavelet Analysis
Financial Forecasting Using Wavelet Analysis
 
Stochastic Loss Reserving-General Insurance
Stochastic Loss Reserving-General InsuranceStochastic Loss Reserving-General Insurance
Stochastic Loss Reserving-General Insurance
 
2008 implementation of va r in financial institutions
2008   implementation of va r in financial institutions2008   implementation of va r in financial institutions
2008 implementation of va r in financial institutions
 
Control charts
Control chartsControl charts
Control charts
 
Chapter 2 fx rate risk for currrency portfolios
Chapter 2   fx rate risk for currrency portfoliosChapter 2   fx rate risk for currrency portfolios
Chapter 2 fx rate risk for currrency portfolios
 
RIC-NN: A Robust Transferable Deep Learning Framework for Cross-sectional Inv...
RIC-NN: A Robust Transferable Deep Learning Framework for Cross-sectional Inv...RIC-NN: A Robust Transferable Deep Learning Framework for Cross-sectional Inv...
RIC-NN: A Robust Transferable Deep Learning Framework for Cross-sectional Inv...
 
Npvrisk
NpvriskNpvrisk
Npvrisk
 
Traffic state estimation with multi-sensor data for large networks with macro...
Traffic state estimation with multi-sensor data for large networks with macro...Traffic state estimation with multi-sensor data for large networks with macro...
Traffic state estimation with multi-sensor data for large networks with macro...
 
MUMS: Transition & SPUQ Workshop - Gradient-Free Construction of Active Subsp...
MUMS: Transition & SPUQ Workshop - Gradient-Free Construction of Active Subsp...MUMS: Transition & SPUQ Workshop - Gradient-Free Construction of Active Subsp...
MUMS: Transition & SPUQ Workshop - Gradient-Free Construction of Active Subsp...
 

Mais de Lov Loothra

System Design: Gold Loan Disbursement in Capital First
System Design: Gold Loan Disbursement in Capital FirstSystem Design: Gold Loan Disbursement in Capital First
System Design: Gold Loan Disbursement in Capital FirstLov Loothra
 
Employer Branding (HRM)
Employer Branding (HRM)Employer Branding (HRM)
Employer Branding (HRM)Lov Loothra
 
Testing for the 'January Effect' under the CAPM framework
Testing for the 'January Effect' under the CAPM frameworkTesting for the 'January Effect' under the CAPM framework
Testing for the 'January Effect' under the CAPM frameworkLov Loothra
 
Testing for the 'January Effect' under the CAPM framework
Testing for the 'January Effect' under the CAPM frameworkTesting for the 'January Effect' under the CAPM framework
Testing for the 'January Effect' under the CAPM frameworkLov Loothra
 
IKEA's Distribution Strategy in India
IKEA's Distribution Strategy in IndiaIKEA's Distribution Strategy in India
IKEA's Distribution Strategy in IndiaLov Loothra
 
Dropbox: Managing Innovation in the Networked Economy
Dropbox: Managing Innovation in the Networked EconomyDropbox: Managing Innovation in the Networked Economy
Dropbox: Managing Innovation in the Networked EconomyLov Loothra
 
The Impact of Algorithmic Trading
The Impact of Algorithmic TradingThe Impact of Algorithmic Trading
The Impact of Algorithmic TradingLov Loothra
 
The Impact of Algorithmic Trading
The Impact of Algorithmic TradingThe Impact of Algorithmic Trading
The Impact of Algorithmic TradingLov Loothra
 

Mais de Lov Loothra (10)

System Design: Gold Loan Disbursement in Capital First
System Design: Gold Loan Disbursement in Capital FirstSystem Design: Gold Loan Disbursement in Capital First
System Design: Gold Loan Disbursement in Capital First
 
Employer Branding (HRM)
Employer Branding (HRM)Employer Branding (HRM)
Employer Branding (HRM)
 
Testing for the 'January Effect' under the CAPM framework
Testing for the 'January Effect' under the CAPM frameworkTesting for the 'January Effect' under the CAPM framework
Testing for the 'January Effect' under the CAPM framework
 
Visual Search
Visual SearchVisual Search
Visual Search
 
Testing for the 'January Effect' under the CAPM framework
Testing for the 'January Effect' under the CAPM frameworkTesting for the 'January Effect' under the CAPM framework
Testing for the 'January Effect' under the CAPM framework
 
IKEA's Distribution Strategy in India
IKEA's Distribution Strategy in IndiaIKEA's Distribution Strategy in India
IKEA's Distribution Strategy in India
 
Dropbox: Managing Innovation in the Networked Economy
Dropbox: Managing Innovation in the Networked EconomyDropbox: Managing Innovation in the Networked Economy
Dropbox: Managing Innovation in the Networked Economy
 
Visual Search
Visual SearchVisual Search
Visual Search
 
The Impact of Algorithmic Trading
The Impact of Algorithmic TradingThe Impact of Algorithmic Trading
The Impact of Algorithmic Trading
 
The Impact of Algorithmic Trading
The Impact of Algorithmic TradingThe Impact of Algorithmic Trading
The Impact of Algorithmic Trading
 

Último

The Economic History of the U.S. Lecture 18.pdf
The Economic History of the U.S. Lecture 18.pdfThe Economic History of the U.S. Lecture 18.pdf
The Economic History of the U.S. Lecture 18.pdfGale Pooley
 
Malad Call Girl in Services 9892124323 | ₹,4500 With Room Free Delivery
Malad Call Girl in Services  9892124323 | ₹,4500 With Room Free DeliveryMalad Call Girl in Services  9892124323 | ₹,4500 With Room Free Delivery
Malad Call Girl in Services 9892124323 | ₹,4500 With Room Free DeliveryPooja Nehwal
 
02_Fabio Colombo_Accenture_MeetupDora&Cybersecurity.pptx
02_Fabio Colombo_Accenture_MeetupDora&Cybersecurity.pptx02_Fabio Colombo_Accenture_MeetupDora&Cybersecurity.pptx
02_Fabio Colombo_Accenture_MeetupDora&Cybersecurity.pptxFinTech Belgium
 
Dividend Policy and Dividend Decision Theories.pptx
Dividend Policy and Dividend Decision Theories.pptxDividend Policy and Dividend Decision Theories.pptx
Dividend Policy and Dividend Decision Theories.pptxanshikagoel52
 
VIP Kolkata Call Girl Jodhpur Park 👉 8250192130 Available With Room
VIP Kolkata Call Girl Jodhpur Park 👉 8250192130  Available With RoomVIP Kolkata Call Girl Jodhpur Park 👉 8250192130  Available With Room
VIP Kolkata Call Girl Jodhpur Park 👉 8250192130 Available With Roomdivyansh0kumar0
 
Log your LOA pain with Pension Lab's brilliant campaign
Log your LOA pain with Pension Lab's brilliant campaignLog your LOA pain with Pension Lab's brilliant campaign
Log your LOA pain with Pension Lab's brilliant campaignHenry Tapper
 
03_Emmanuel Ndiaye_Degroof Petercam.pptx
03_Emmanuel Ndiaye_Degroof Petercam.pptx03_Emmanuel Ndiaye_Degroof Petercam.pptx
03_Emmanuel Ndiaye_Degroof Petercam.pptxFinTech Belgium
 
00_Main ppt_MeetupDORA&CyberSecurity.pptx
00_Main ppt_MeetupDORA&CyberSecurity.pptx00_Main ppt_MeetupDORA&CyberSecurity.pptx
00_Main ppt_MeetupDORA&CyberSecurity.pptxFinTech Belgium
 
Pooja 9892124323 : Call Girl in Juhu Escorts Service Free Home Delivery
Pooja 9892124323 : Call Girl in Juhu Escorts Service Free Home DeliveryPooja 9892124323 : Call Girl in Juhu Escorts Service Free Home Delivery
Pooja 9892124323 : Call Girl in Juhu Escorts Service Free Home DeliveryPooja Nehwal
 
The Economic History of the U.S. Lecture 30.pdf
The Economic History of the U.S. Lecture 30.pdfThe Economic History of the U.S. Lecture 30.pdf
The Economic History of the U.S. Lecture 30.pdfGale Pooley
 
Solution Manual for Financial Accounting, 11th Edition by Robert Libby, Patri...
Solution Manual for Financial Accounting, 11th Edition by Robert Libby, Patri...Solution Manual for Financial Accounting, 11th Edition by Robert Libby, Patri...
Solution Manual for Financial Accounting, 11th Edition by Robert Libby, Patri...ssifa0344
 
06_Joeri Van Speybroek_Dell_MeetupDora&Cybersecurity.pdf
06_Joeri Van Speybroek_Dell_MeetupDora&Cybersecurity.pdf06_Joeri Van Speybroek_Dell_MeetupDora&Cybersecurity.pdf
06_Joeri Van Speybroek_Dell_MeetupDora&Cybersecurity.pdfFinTech Belgium
 
Call Girls Service Nagpur Maya Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Maya Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Maya Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Maya Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
VIP Kolkata Call Girl Serampore 👉 8250192130 Available With Room
VIP Kolkata Call Girl Serampore 👉 8250192130  Available With RoomVIP Kolkata Call Girl Serampore 👉 8250192130  Available With Room
VIP Kolkata Call Girl Serampore 👉 8250192130 Available With Roomdivyansh0kumar0
 
20240417-Calibre-April-2024-Investor-Presentation.pdf
20240417-Calibre-April-2024-Investor-Presentation.pdf20240417-Calibre-April-2024-Investor-Presentation.pdf
20240417-Calibre-April-2024-Investor-Presentation.pdfAdnet Communications
 
The Economic History of the U.S. Lecture 19.pdf
The Economic History of the U.S. Lecture 19.pdfThe Economic History of the U.S. Lecture 19.pdf
The Economic History of the U.S. Lecture 19.pdfGale Pooley
 
The Economic History of the U.S. Lecture 23.pdf
The Economic History of the U.S. Lecture 23.pdfThe Economic History of the U.S. Lecture 23.pdf
The Economic History of the U.S. Lecture 23.pdfGale Pooley
 
(DIYA) Bhumkar Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(DIYA) Bhumkar Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(DIYA) Bhumkar Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(DIYA) Bhumkar Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Solution Manual for Principles of Corporate Finance 14th Edition by Richard B...
Solution Manual for Principles of Corporate Finance 14th Edition by Richard B...Solution Manual for Principles of Corporate Finance 14th Edition by Richard B...
Solution Manual for Principles of Corporate Finance 14th Edition by Richard B...ssifa0344
 

Último (20)

The Economic History of the U.S. Lecture 18.pdf
The Economic History of the U.S. Lecture 18.pdfThe Economic History of the U.S. Lecture 18.pdf
The Economic History of the U.S. Lecture 18.pdf
 
Malad Call Girl in Services 9892124323 | ₹,4500 With Room Free Delivery
Malad Call Girl in Services  9892124323 | ₹,4500 With Room Free DeliveryMalad Call Girl in Services  9892124323 | ₹,4500 With Room Free Delivery
Malad Call Girl in Services 9892124323 | ₹,4500 With Room Free Delivery
 
02_Fabio Colombo_Accenture_MeetupDora&Cybersecurity.pptx
02_Fabio Colombo_Accenture_MeetupDora&Cybersecurity.pptx02_Fabio Colombo_Accenture_MeetupDora&Cybersecurity.pptx
02_Fabio Colombo_Accenture_MeetupDora&Cybersecurity.pptx
 
Dividend Policy and Dividend Decision Theories.pptx
Dividend Policy and Dividend Decision Theories.pptxDividend Policy and Dividend Decision Theories.pptx
Dividend Policy and Dividend Decision Theories.pptx
 
VIP Kolkata Call Girl Jodhpur Park 👉 8250192130 Available With Room
VIP Kolkata Call Girl Jodhpur Park 👉 8250192130  Available With RoomVIP Kolkata Call Girl Jodhpur Park 👉 8250192130  Available With Room
VIP Kolkata Call Girl Jodhpur Park 👉 8250192130 Available With Room
 
Log your LOA pain with Pension Lab's brilliant campaign
Log your LOA pain with Pension Lab's brilliant campaignLog your LOA pain with Pension Lab's brilliant campaign
Log your LOA pain with Pension Lab's brilliant campaign
 
03_Emmanuel Ndiaye_Degroof Petercam.pptx
03_Emmanuel Ndiaye_Degroof Petercam.pptx03_Emmanuel Ndiaye_Degroof Petercam.pptx
03_Emmanuel Ndiaye_Degroof Petercam.pptx
 
Veritas Interim Report 1 January–31 March 2024
Veritas Interim Report 1 January–31 March 2024Veritas Interim Report 1 January–31 March 2024
Veritas Interim Report 1 January–31 March 2024
 
00_Main ppt_MeetupDORA&CyberSecurity.pptx
00_Main ppt_MeetupDORA&CyberSecurity.pptx00_Main ppt_MeetupDORA&CyberSecurity.pptx
00_Main ppt_MeetupDORA&CyberSecurity.pptx
 
Pooja 9892124323 : Call Girl in Juhu Escorts Service Free Home Delivery
Pooja 9892124323 : Call Girl in Juhu Escorts Service Free Home DeliveryPooja 9892124323 : Call Girl in Juhu Escorts Service Free Home Delivery
Pooja 9892124323 : Call Girl in Juhu Escorts Service Free Home Delivery
 
The Economic History of the U.S. Lecture 30.pdf
The Economic History of the U.S. Lecture 30.pdfThe Economic History of the U.S. Lecture 30.pdf
The Economic History of the U.S. Lecture 30.pdf
 
Solution Manual for Financial Accounting, 11th Edition by Robert Libby, Patri...
Solution Manual for Financial Accounting, 11th Edition by Robert Libby, Patri...Solution Manual for Financial Accounting, 11th Edition by Robert Libby, Patri...
Solution Manual for Financial Accounting, 11th Edition by Robert Libby, Patri...
 
06_Joeri Van Speybroek_Dell_MeetupDora&Cybersecurity.pdf
06_Joeri Van Speybroek_Dell_MeetupDora&Cybersecurity.pdf06_Joeri Van Speybroek_Dell_MeetupDora&Cybersecurity.pdf
06_Joeri Van Speybroek_Dell_MeetupDora&Cybersecurity.pdf
 
Call Girls Service Nagpur Maya Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Maya Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Maya Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Maya Call 7001035870 Meet With Nagpur Escorts
 
VIP Kolkata Call Girl Serampore 👉 8250192130 Available With Room
VIP Kolkata Call Girl Serampore 👉 8250192130  Available With RoomVIP Kolkata Call Girl Serampore 👉 8250192130  Available With Room
VIP Kolkata Call Girl Serampore 👉 8250192130 Available With Room
 
20240417-Calibre-April-2024-Investor-Presentation.pdf
20240417-Calibre-April-2024-Investor-Presentation.pdf20240417-Calibre-April-2024-Investor-Presentation.pdf
20240417-Calibre-April-2024-Investor-Presentation.pdf
 
The Economic History of the U.S. Lecture 19.pdf
The Economic History of the U.S. Lecture 19.pdfThe Economic History of the U.S. Lecture 19.pdf
The Economic History of the U.S. Lecture 19.pdf
 
The Economic History of the U.S. Lecture 23.pdf
The Economic History of the U.S. Lecture 23.pdfThe Economic History of the U.S. Lecture 23.pdf
The Economic History of the U.S. Lecture 23.pdf
 
(DIYA) Bhumkar Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(DIYA) Bhumkar Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(DIYA) Bhumkar Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(DIYA) Bhumkar Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Solution Manual for Principles of Corporate Finance 14th Edition by Richard B...
Solution Manual for Principles of Corporate Finance 14th Edition by Richard B...Solution Manual for Principles of Corporate Finance 14th Edition by Richard B...
Solution Manual for Principles of Corporate Finance 14th Edition by Richard B...
 

Value at Risk Engine

  • 1. Value at Risk Engine To compute the Initial Margin requirements for FX Forwards using Historical Simulation Name: Company: Area: College: Lov Loothra Genpact Finance IMT Ghaziabad
  • 2. Introduction & Agenda Project deals with optimal computation of the Historical Value at Risk (Historical VaR or HVaR) of FX Forward Contracts in order to estimate Initial Margin requirements. A G E N D A What is Value at Risk? Why use VaR? Techniques for computing VaR Detailed description of the methodology used in the project References
  • 3. What is Value at Risk? • A statistical tool which gives a measure of the market risk of an investment • Requires 3 quantities to express completely: i. The holding period, t ii. The potential loss, x iii. The probability for the said loss, p • VaR is stated to be no more than x for a holding period of t with a probability of p VaR @ 99% Confidence Holding period of 10 days $1 Million $50,000
  • 4. Why use VaR? • A popular and traditional measure of risk is Volatility • Problem: it does not care about the direction of an investment's movement • For investors, risk is about the odds of losing money • VaR fits the bill perfectly because we can use it to answer questions like • "What is my worst-case scenario?" • "How much could I lose in a really bad month?" • Usage of VaR grew tremendously post October 1994 with the release of J.P. Morgan’s RiskMetric™ system • Basel Committee on Banking Supervision proposed in April 1995 to allow banks to calculate their capital requirements for market risk using VaR • In our project, VaR estimate for FX Forward Contracts & IRS is used to determine Initial Margin requirements Initial Margin is a collateral that the holder of a financial instrument has to deposit to cover some or all of the credit risk of their counterparty. It is usually supposed to be large enough to cope with one-day losses on most days. As VaR is capable of giving an estimate of worst case scenarios, we can use it to help the firm estimate initial margin requirements.
  • 5. Techniques for computing VaR Variance-Covariance method Monte Carlo Simulation Historical method
  • 7. Monte-Carlo Simulation • Geometric Brownian motion is applied to stocks in order to simulate future scenarios. This is modeled as: dSt = μ St dt + σ St dWt Here, St μ σ Wt stock price at time t is the ‘drift’ of the stock is the ‘volatility’ of the stock is the stochastic randomness factor • Stochastic Randomness is simulated by using a pseudo random number generator (we used the Mersenne Twister in our implementation) • Drift, volatility and initial price of the stock are fed into the model and a large number of simulations are run to generate simulated ‘paths’ for the stock • P&Ls are calculated for the simulated values & sorted in descending order of losses • Finally, the value at pth percentile of the P&Ls is selected as the VaR
  • 9. Historical Simulation • Non-parametric approach to VaR estimation: makes no assumption about the distribution of the underlying observations • Works by using historical values of assets returns over a large period of time and applying them to the current value to generated ‘simulated’ values • Simulated values are used to compute P&Ls w.r.t. the base price at computation date • P&Ls are then sorted and the value lying at a certain percentile (based on the required confidence interval) gives us the VaR estimate • Example: For 1000 simulated values and a confidence interval of 99%, the observation that determines VaR would be the (1% x 1000)th = 10th observation • We used a modified historical simulation methodology in our project to compute FX Forward margins the details of which are given in the following slides
  • 10. Detailed Methodology • Obtain historical rates over the last 10 years from a reliable source for the currency pair for all required tenor points • First 5 years are inputs pertaining to volatility computations whereas the next 5 are for the actual simulation • Assuming we have 16 tenor points, we get the following 5-year zero-rate matrix: R1, 1 R1, 2 R1, 3 R2, 1 R2, 2 R2, 3 R3, 1 R3, 2 R3, 3 … … … R1265, 1 R1265, 2 R1265, 3 … … … … … R1, 16 R2, 16 R3, 16 … R1265, 16 • Compute the 5-day Log Return Matrix by taking the log of ratio of the continuously compounded zero rates and the fifth-previous business day rt,j = log (Rt, j / Rt–5, j)
  • 11. Detailed Methodology contd. • Applying the log returns formula to our matrix, we get: r1, 1 r2, 1 r3, 1 … r1, 2 r2, 2 r3, 2 … r1, 3 r2, 3 r3, 3 … r1260, 1 r1260, 2 r1260, 3 … … … … … r1, 16 r2, 16 r3, 16 … r1260, 16 • Compute a time series of volatility forecasts: EWMA (exponentially-weighted moving average) was used to construct a model capable of reacting to changes in the underlying volatility: σ2t, j = (1 – λ) r2t–1, j + λσ2 t–1, j Here, σ r λ volatility forecast log return time decay coefficient of historical log returns • To avoid model error, first 5 years of data was used to generate a seed value for the EWMA forecast with the first value seeded as the square of the returns
  • 12. Detailed Methodology contd. • Applying the aforementioned transformation to our matrix, we get: σ1, 1 σ2, 1 σ3, 1 … σ1260, 1 σ1, 2 σ2, 2 σ3, 2 … σ1260, 2 σ1, 3 σ2, 3 σ3, 3 … σ1260, 3 … … … … … σ1, 16 σ2, 16 σ3, 16 … σ1260, 16 • Volatility Smoothing is performed to reduce noise and account for unwarranted fluctuations in margins and is done by averaging the forecasted volatility over a short look-back horizon: σ't, j = σ't–1, j + α (σt, j – σ't–1, j) α = 2 / (L + 1) Here, σ' α L smoothened volatility smoothing coefficient look-back horizon (10 days in our project) • Introduce the volatility floor around the least value of the implied volatility observed in a short period to prevent low margin values
  • 13. Detailed Methodology contd. • Flooring is done using the following equation: σ''t, j = max { σ't, j , X% } Here, σ'' σ' X% modified volatility after the flooring smoothened volatility 97th percentile of recent sample of volatilities • Calculate scaling coefficients by dividing the forecasted volatility by the historically determined EWMA volatility: Ct, j = σ''t, j / σ't, j • After applying the above formula to our matrix, we get: C1, 1 C1, 2 C1, 3 C2, 1 C2, 2 C2, 3 C3, 1 C3, 2 C3, 3 … … … C1260, 1 C1260, 2 C1260, 3 … … … … … C1, 16 C2, 16 C3, 16 … C1260, 16
  • 14. Detailed Methodology contd. • Calculate scaled returns by taking the product of the scaling coefficient and the historical 5-day log return for each scenario and tenor point • We generate a matrix of scaled returns as follows: r1, 1 r2, 1 r3, 1 … r* = r1, 3 r2, 3 r3, 3 … r1260, 1 r* = r1, 2 r2, 2 r3, 2 … r1260, 2 r1260, 3 C1, 1 x r1, 1 C2, 1 x r2, 1 C3, 1 x r3, 1 … C1260, 1 x r1260, 1 … r1, 16 … r2, 16 … r3, 16 … … … r1260, 16 C1, 2 x r1, 2 C2, 2 x r2, 2 C3, 2 x r3, 2 … C1260, 2 x r1260, 2 x C1, 1 C2, 1 C3, 1 … C1260, 1 C1, 2 C2, 2 C3, 2 … C1260, 2 C1, 3 x r1, 3 C2, 3 x r2, 3 C3, 3 x r3, 3 … C1260, 3 x r1260, 3 • Here, r* represents the matrix of scaled log returns C1, 3 C2, 3 C3, 3 … C1260, 3 … C1, 16 … C2, 16 … C3, 16 … … … C1260, 16 … C1, 16 x r1, 16 … C2, 16 x r2, 16 … C3, 16 x r3, 16 … … … C1260, 16 x r1260, 16
  • 15. Detailed Methodology contd. • Compute the Shocked US Zero Curves and Shocked FX Forward Curves by applying the matrix of scaled log returns to the base curves (US Zero curve and FX Forward curve) as on the margin date: R*t, j = R T, j · e ^ (r*t, j) Here, R*t, j RT, j r*t, j shocked curve of the jth tenor point base curve on the margin date scaled log returns at time t & tenor point j • Base curve matrix, R, where t = the margin date for all tenors is [R1, R2, … , R16]; the final matrix of 1260 scenarios is obtained as shown below: R* = R1 e^(r*1, 1) R1 e^(r*2, 1) R1 e^(r*3, 1) … R1 e^(r*1260, 1) R2 e^(r*1, 2) R2 e^(r*2, 2) R2 e^(r*3, 2) … R2 e^(r*1260, 2) R3 e^(r*1, 3) R3 e^(r*2, 3) R3 e^(r*3, 3) … R3 e^(r*1260, 3) … … … … … R16 e^(r*1, 16) R16 e^(r*2, 16) R16 e^(r*3, 16) … R16 e^(r*1260, 16)
  • 16. Detailed Methodology contd. • Compute Portfolio Value from the shocked forward curve for all scenarios: SC1, 1 SC2, 1 SC3, 1 … SC1260, 1 SC1, 2 SC2, 2 SC3, 2 … SC1260, 2 SC1, 3 SC2, 3 SC3, 3 … SC1260, 3 … … … … … SC1, 16 SC2, 16 SC3, 16 … SC1260, 16 ⇒ PV1 PV2 PV3 … PV1260 • Compute the portfolio Profit/Loss (P&L) by taking the difference between the Portfolio Value for each scenario & the Base Portfolio Value on the margin date: PV1 P&L1 PV2 PV3 P&L2 P&L3 … PV1260 – Base Price margin-date = … P&L1260 • Sort the P&Ls in ascending order of losses and use the required confidence interval (99.7 in our project) to extract the required margin: Required value of Initial Margin = P&L0.3th
  • 17. FX – Forward HVAR Implementation Shocked US Zero Curve
  • 18. Status and Future Scope • The tool that I’ve developed is now capable of accepting new trades via an input form and computing the Initial Margin for EURUSD FX Forward Contracts • I’ve added dynamic support for up to 19 tenor points and potentially unlimited historical data • Support for other currency pairs would need to be added • We also used a similar methodology to compute initial margin requirements for Interest Rate Swaps
  • 19. References 1. Linsmeier, Thomas J. and Pearson, Neil D. “Risk Measurement: An Introduction to Value at Risk”, University of Illinois at Urbana-Champaign, July 1996 2. J. P. Morgan/Reuters “RiskMetrics™: Technical Document”, Fourth Edition, 17 December 1996 3. Elliot, Timothy R. “Certification of the Change in Performance Bond Methodology from SPAN to HVaR for cleared OTC FX Spot, Forward and Swap Transactions”, Chicago Mercantile Exchange Rule Submission, 30 March 2012

Notas do Editor

  1. A stock can be volatile because it suddenly jumps higherVaR is closely connected with initial margin requirements of clearing corporations
  2. > The period, of course, may vary depending upon the level of rigor required> The data should now be ‘cleansed’ by comparing to Bloomberg quotes and identifying any dates where the forward rates were not in line with a trend analysis and examination of the curves.> Where, R1, 1 ≡ Rate (Time 1, Tenor 1); R1, 2 ≡ Rate (Time 1, Tenor 2); and so on
  3. Where, r1, 1= log (R6, 1 / R1, 1); r1260, 16= log (R1265, 16 / R1265, 16); and so on.λ was set to 0.97 in our project based on previous experience and testing.
  4. σ22, 1= (1 – λ) r21, 1 + λσ21, 1; and so on
  5. After applying the aforementioned floor, any volatility value falling in the calibrated lower percentile of historical volatilities is floored out to mitigate any adverse effects of sudden market correctionsWhere, C1, 1= σ''1, 1 / σ'1, 1; C1, 2= σ''1, 2 / σ'1, 2; and so on.
  6. Where, r*1, 1= C1, 1 * r1, 1; r*1, 2= C1, 2 * r1, 2; and so on
  7. Margin computation is portfolio specific and hence the steps from this point forward only outline the necessary approachSC1, 1= to R1 e^( C1, 1 * r1, 1)