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

Basis points vs percentage change

Joined
4/11/10
Messages
16
Points
13
When we say "rates have increased from 2% to 3%," we are really saying that rates have increased 1%, or 100 basis points. However, this is different from percent change, as that would be (.03-.02)/.02 = 50% = 50 basis points.

So, when someone says "X changed 50 basis points" I should think in absolute terms and literally add .50% to whatever changed. If I am told that "X changed by Y percent," then I should carry out the (.03-.02)/.02 = 50% = 50 basis points calculation above.

Is this correct?
 
my understanding is that if x is a rate which has units in percentage already, the "change by certain percentage " is supposed to be additive.
if x is in units of other stuff like price, number, then the "change by certain percentage " is supposed to be multiplicative.

do note that I'm not expert in finace and not even native in english speaking so I could very well be wrong here...
 
More often than not I see a general preference for expressing rate changes in terms of their absolute change, and further, expressing that absolute change in terms of either basis points or points (100 bps). A rate that went from 7.00% to 7.25% would thus be unambiguously described as increasing by 25 bps or one-quarter point.

Saying that a 10% rate "increased by 3% " leaves open the possibility that it went to 13% or that it went to 10.3%, and so I tend to see people deliberately avoiding this language, and using the "points / basis points" lingo instead. Still, it's not a universal agreement by any stretch, so get clarification whenever there's doubt.
 
Lets use 50% as an example:

Saying "an increase of 10%" equals 50% x 1.1 = 55%
Saying "an increase of 10 percentage points / pp / % points" equals 50% + 10% = 60%
Saying "an increase of 100 basis points / bps" equals 50% + 1% = 51%

If in doubt, better to give too much information than to give too little.
 
Movements in yields and yield spreads are usually (but not always) measured in basis points. That, however, is not necessarily indicative of any stationarity assumption. Rates can be normal (absolute changes gaussian) or log-normal (relative changes gaussian) or anything in-between.

Think of the paradigm as
Slide1.gif
where alpha can be between zero and unity.

Some firms measure total credit spread risk not as spread PV01, but rather as PV10%, which represents a 10% increase in overall spread levels across the board.
 
Back
Top