CUSIP


A CUSIP is a nine-digit numeric or nine-character alphanumeric code that identifies a North American financial security for the purposes of facilitating clearing and settlement of trades. The CUSIP was adopted as an American National Standard under Accredited Standards X9.6.
The CUSIP system is owned by the American Bankers Association and is operated by S&P Global Market Intelligence. The operating body, CUSIP Global Services, also serves as the national numbering agency for North America, and the CUSIP serves as the National Securities Identification Number for products issued from both the United States and Canada. In its role as the NNA, CUSIP Global Services also assigns all US-based ISINs.

History

The acronym CUSIP derives from the Committee on Uniform Security Identification Procedures, a committee of the American Bankers Association. The Committee was founded in July 1964 and developed the CUSIP system. The Committee formed the CUSIP Service Bureau in 1968, during the paper crunch on Wall Street.
The CUSIP system has grown over the years to cover corporate, government, municipal, and international securities ; IPO's; preferred stock; funds; certificates of deposit; syndicated loans; and U.S. and Canadian listed options. The CGS database contains issuer and issue-level identifiers, plus standardized descriptive data, for more than 14 million financial instruments and entities. CGS is also the designated national numbering agency responsible for assigning the ISIN in over 35 other markets.

Antitrust review

In November 2009, the European Commission charged S&P Capital IQ with abusing its position as the sole provider of ISIN codes for U.S. securities by requiring European financial firms and data vendors to pay licensing fees for their use. The European Commission described the behaviour as unfair pricing, noting that in cases such as clearing or regulatory compliance, there are no acceptable alternatives.
In its formal statement of objections, the European Commission alleged that S&P Capital IQ was abusing its position by requiring financial services companies and information service providers to pay license fees for the use of U.S. ISINs. The European Commission claimed that comparable agencies elsewhere in the world either do not charge fees at all, or do so on the basis of distribution cost, rather than usage.
While strongly disagreeing with the European Commission, CGS/S&P Capital IQ offered to create a low-cost, low-value feed of certain US ISINs for use by market participants in the European Economic Area. A formal agreement was reached on November 15, 2011.

Format

A CUSIP is a nine character code. The first six characters are known as the base, and uniquely identify the issuer. Issuer codes are assigned alphabetically from a series that includes deliberate built-in "gaps" for future expansion. The 7th and 8th digit identify the exact issue. The 9th digit is an automatically generated checksum. The last three characters of the issuer code can be letters, in order to provide more room for expansion.
Issuer numbers 990 to 999 and 99A to 99Z in each group of 1,000 numbers are reserved for internal use. This permits a user to assign an issuer number to any issuer which might be relevant to his holdings but which does not qualify for coverage under the CUSIP numbering system. Other issuer numbers are also reserved for the user so that they may be assigned to non-security assets or to number miscellaneous internal assets.
The 7th and 8th digit identify the exact issue, the format being dependent on the type of security. In general, numbers are used for equities and letters are used for fixed income. For commercial paper the first issue character is generated by taking the letter code of the maturity month, the second issue character is the day of the maturity date, with letters used for numbers over 9. The first security issued by any particular issuer is numbered "10". Newer issues are numbered by adding ten to the last used number up to 80, at which point the next issue is "88" and then goes down by tens. The issue number "01" is used to label all options on equities from that issuer.
Fixed income issues are labeled using a similar fashion, but due to there being so many of them they use letters instead of digits. The first issue is labeled "AA", the next "A2", then "2A" and onto "A3". To avoid confusion, the letters I and O are not used since they might be mistaken for the digits 1 and 0.
CUSIP also reserves the special characters '*', '@' and '#' for use with private placement numbers used by the insurance industry.
The 9th digit is an automatically generated check digit using the "Modulus 10 Double Add Double" technique based on the Luhn algorithm. To calculate the check digit every second digit is multiplied by two. Letters are converted to numbers based on their ordinal position in the alphabet, starting with A equal to 10.

TBA CUSIP Format

There is a special assignment of CUSIP numbers for TBA Security. Working with the MBSCC, CUSIP Global Services developed a specialized identification scheme for TBA mortgage-backed securities.
TBA CUSIPs incorporate, within the identifier itself, a security’s mortgage type, coupon, maturity and settlement month.
TBA Algorithm:
The values below are summed for the first 8 characters, then reduced to 1 digit by modulo.
Character in CUSIPValue in odd positionValue in even position
000
J, S, @01
1, A12
T, #13
2, B, K24
3, C, L, U36
4, D, M, V48
E, N, W50
551
O, X62
6, F63
Y74
7, G, P75
8, H, Q, Z87
9, I, R, *99

Check digit pseudocode

algorithm Cusip-Check-Digit is
input: cusip, an 8-character CUSIP.
sum := 0
for 1 ≤ i ≤ 8 do
c := the ith character of cusip
if c is a digit then
v := numeric value of the digit c
else if c is a letter then
p := ordinal position of c in the alphabet
v := p + 9
else if c = "*" then
v := 36
else if c = "@" then
v := 37
else if c = "#" then
v := 38
end if
if i is even then
v := v × 2
end if
sum := sum + int + v mod 10
repeat
return mod 10

Examples