fbpx
Wikipedia

International Securities Identification Number

An International Securities Identification Number (ISIN) uniquely identifies a security. Its structure is defined in ISO 6166. The ISIN code is a 12-character alphanumeric code that serves for uniform identification of a security through normalization of the assigned National Number, where one exists, at trading and settlement.

History

ISINs were first used in 1981, but did not reach wide acceptance until 1989, when the G30 countries recommended adoption.[1] The ISIN was endorsed a year later by ISO with the ISO 6166 standard.

Initially information was distributed via CD-ROMs and this was later replaced by distribution over the internet.

In 2004 the European Union mandated the use of instrument identifiers in some of its regulatory reporting, which included ISIN as one of the valid identifiers.[2]

Description

ISO 6166 (or ISO6166:2013 as of the 2013 revision) defines the structure of an International Securities Identification Number (ISIN). An ISIN uniquely identifies a fungible security.

Securities with which ISINs can be used are:

ISINs consist of two alphabetic characters, which are the ISO 3166-1 alpha-2 code for the issuing country, nine alpha-numeric characters (the National Securities Identifying Number, or NSIN, which identifies the security, padded as necessary with leading zeros), and one numerical check digit. They are thus always 12 characters in length. When the NSIN changes due to corporate actions or other reasons, the ISIN will also change. Issuance of ISINs is decentralized to individual national numbering agencies (NNAs). Since existing national numbering schemes administered by the various NNAs form the basis for ISINs, the methodology for assignment is not consistent across agencies globally.

An ISIN cannot specify a particular trading location. Another identifier, typically a MIC (Market Identifier Code) or the three-letter exchange code, will have to be specified in addition to the ISIN for this. The currency of the trade will also be required to uniquely identify the instrument using this method.

Usage and acceptance

Since 1989, when ISINs were introduced, they have slowly gained traction worldwide in their usage.

ISINs are being introduced worldwide and are the most popular global securities identifier. Trading, clearing and settlement systems in many countries have adopted ISINs as a secondary measure of identifying securities. Some countries, mainly in Europe, have moved to using the ISIN as their primary means of identifying securities. In addition new European regulations such as Solvency II increasingly require the ISIN to be reported.[3]

Commercial model

The ISIN is generally included in services sold by financial data vendors and intermediaries. These services are normally paid services as more value added data is included with the information. In general, the issuer of a security will include the ISIN in issuance papers or other documentation for identification purposes.

Controversy

In 2009, Standard & Poor's was charged by the European Commission (EC) with abusing its position in licensing international securities identification codes for United States securities by requiring European financial firms and data vendors to pay licensing fees for their use. "This behaviour amounts to unfair pricing," the EC said in its statement of objections which lays the groundwork for an adverse finding against S&P. "The (numbers) are indispensable for a number of operations that financial institutions carry out – for instance, reporting to authorities or clearing and settlement – and cannot be substituted".[4][5]

In 2011, Standard and Poor's provided six undertakings[6] to the European Commission to remedy the situation. The agreement is applicable to all consuming companies in the European Economic Area. These expired at the end of 2016.

Examples

The examples below describes one approach for applying the Luhn algorithm on two different ISINs. The difference in the two examples has to do with if there are an odd or even number of digits after converting letters to number. Since the NSIN element can be any alpha numeric sequence (9 characters), an odd number of letters will result in an even number of digits and an even number of letters will result in an odd number of digits. For an odd number of digits, the approach in the first example is used. For an even number of digits, the approach in the second example is used. The Luhn algorithm can also be applied in the same manner for both types or lengths (alternating multiply the string of digits by 1 and 2, starting from the end of the string), being more generic.

Apple, Inc.

Apple, Inc.: ISIN US0378331005, expanded from CUSIP 037833100 The main body of the ISIN is the original CUSIP, assigned in the 1970s. The country code "US" has been added on the front, and an additional check digit at the end. The country code indicates the country of issue. The check digit is calculated using the Luhn algorithm.

Convert any letters to numbers by taking the ASCII code of the capital letter and subtracting 55:

U = 30, S = 28. US037833100 -> 30 28 037833100

Collect odd and even characters:

3028037833100 = (3, 2, 0, 7, 3, 1, 0), (0, 8, 3, 8, 3, 0)

Multiply the group containing the rightmost character (which is the FIRST group) by 2:

(6, 4, 0, 14, 6, 2, 0)

Add up the individual digits:

(6 + 4 + 0 + (1 + 4) + 6 + 2 + 0) + (0 + 8 + 3 + 8 + 3 + 0) = 45

Take the 10s modulus of the sum:

45 mod 10 = 5

Subtract from 10:

10 − 5 = 5

Take the 10s modulus of the result (this final step is important in the instance where the modulus of the sum is 0, as the resulting check digit would be 10).

5 mod 10 = 5

So the ISIN check digit is five.

Treasury Corporation of Victoria

TREASURY CORP VICTORIA 5 3/4% 2005-2016: ISIN AU0000XVGZA3. The check digit is calculated using the Luhn algorithm.

Convert any letters to numbers by taking the ASCII code of the capital letter and subtracting 55:

A = 10, G = 16, U = 30, V = 31, X = 33, Z = 35. AU0000XVGZA -> 10 30 0000 33 31 16 35 10.

Collect odd and even characters:

103000003331163510 = (1, 3, 0, 0, 3, 3, 1, 3, 1), (0, 0, 0, 0, 3, 1, 6, 5, 0)

Multiply the group containing the rightmost character (which is the SECOND group) by 2:

(0, 0, 0, 0, 6, 2, 12, 10, 0)

Add up the individual digits:

(1 + 3 + 0 + 0 + 3 + 3 + 1 + 3 + 1) + (0 + 0 + 0 + 0 + 6 + 2 + (1 + 2) + (1 + 0) + 0) = 27

Take the 10s modulus of the sum:

27 mod 10 = 7

Subtract from 10:

10 − 7 = 3

Take the 10s modulus of the result (this final step is important in the instance where the modulus of the sum is 0, as the resulting check digit would be 10).

3 mod 10 = 3

So the ISIN check digit is three.

BAE Systems

BAE Systems: ISIN GB0002634946, expanded from SEDOL 000263494

The main body is the SEDOL, padded on the front with the addition of two zeros. The country code "GB" is then added on the front, and the check digit on the end as in the example above.

Check-digit flaw in ISIN

The Treasury Corporation of Victoria ISIN illustrates a flaw in ISIN's check digit algorithm which allows transposed letters: Suppose the ISIN was mis-typed as AU0000VXGZA3 (instead of AU0000XVGZA3)

A = 10, G = 16, U = 30, V = 31, X = 33, Z = 35. "AU0000VXGZA" -> 10 30 00 00 31 33 16 35 10".

Collect odd and even characters:

103000003133163510 = (1, 3, 0, 0, 3, 3, 1, 3, 1), (0, 0, 0, 0, 1, 3, 6, 5, 0)

Multiply the group containing the rightmost character (which is the SECOND group) by 2:

(0, 0, 0, 0, 2, 6, 12, 10, 0)

Add up the individual digits:

(1 + 3 + 0 + 0 + 3 + 3 + 1 + 3 + 1) + (0 + 0 + 0 + 0 + 2 + 6 + (1 + 2) + (1 + 0) + 0) = 27

Take the 10s modulus of the sum:

27 mod 10 = 7

Subtract from 10:

10 − 7 = 3

Take the 10s modulus of the result (this final step is important in the instance where the modulus of the sum is 0, as the resulting check digit would be 10).

3 mod 10 = 3

So the ISIN check digit is still three even though two letters have been transposed.

Such flaw against a single transposed pair of letters or digits would have been avoided using two check digits instead of just one (i.e., a 97 modulus instead of the 10 modulus, like in IBAN numbers which may also mix letters and digits). Some protocols require the transmission of additional check digits added to the full ISIN number.

See also

References

  1. ^ "Coordinated Portfolio Investment Survey Guide, Second Edition, International Monetary Fund, 2002, Washington DC - Appendix VII: International Securities Identification Number (ISIN) Code System" (PDF). imf.org. (PDF) from the original on 2017-06-14.
  2. ^ "Commission Regulation (EC) No 809/2004 of 29 April 2004 implementing Directive 2003/71/EC of the European Parliament and of the Council as regards information contained in prospectuses as well as the format, incorporation by reference and publication of such prospectuses and dissemination of advertisements (Text with EEA relevance)". europa.eu.
  3. ^ "Archived copy" (PDF). (PDF) from the original on 2016-10-07. Retrieved 2016-07-20.{{cite web}}: CS1 maint: archived copy as title (link)
  4. ^ Securities Technology Monitor, ed. (2009). . Archived from the original on 2011-07-16.
  5. ^ Finextra, ed. (2009). "European Commission Accuses S&P of Monopoly Abuse over Isin Fees". from the original on 2011-03-12.
  6. ^ http://ec.europa.eu/competition/antitrust/cases/dec_docs/39592/39592_2152_5.pdf[bare URL PDF]

External links

international, securities, identification, number, isin, uniquely, identifies, security, structure, defined, 6166, isin, code, character, alphanumeric, code, that, serves, uniform, identification, security, through, normalization, assigned, national, number, w. An International Securities Identification Number ISIN uniquely identifies a security Its structure is defined in ISO 6166 The ISIN code is a 12 character alphanumeric code that serves for uniform identification of a security through normalization of the assigned National Number where one exists at trading and settlement Contents 1 History 2 Description 3 Usage and acceptance 4 Commercial model 5 Controversy 6 Examples 6 1 Apple Inc 6 2 Treasury Corporation of Victoria 6 3 BAE Systems 7 Check digit flaw in ISIN 8 See also 9 References 10 External linksHistoryISINs were first used in 1981 but did not reach wide acceptance until 1989 when the G30 countries recommended adoption 1 The ISIN was endorsed a year later by ISO with the ISO 6166 standard Initially information was distributed via CD ROMs and this was later replaced by distribution over the internet In 2004 the European Union mandated the use of instrument identifiers in some of its regulatory reporting which included ISIN as one of the valid identifiers 2 DescriptionISO 6166 or ISO6166 2013 as of the 2013 revision defines the structure of an International Securities Identification Number ISIN An ISIN uniquely identifies a fungible security Securities with which ISINs can be used are Equities shares units depository receipts Debt instruments bonds and debt instruments other than international international bonds and debt instruments stripped coupons and principal treasury bills others Entitlements rights warrants Derivatives options futures Others commodities currencies indices interest rates ISINs consist of two alphabetic characters which are the ISO 3166 1 alpha 2 code for the issuing country nine alpha numeric characters the National Securities Identifying Number or NSIN which identifies the security padded as necessary with leading zeros and one numerical check digit They are thus always 12 characters in length When the NSIN changes due to corporate actions or other reasons the ISIN will also change Issuance of ISINs is decentralized to individual national numbering agencies NNAs Since existing national numbering schemes administered by the various NNAs form the basis for ISINs the methodology for assignment is not consistent across agencies globally An ISIN cannot specify a particular trading location Another identifier typically a MIC Market Identifier Code or the three letter exchange code will have to be specified in addition to the ISIN for this The currency of the trade will also be required to uniquely identify the instrument using this method Usage and acceptanceSince 1989 when ISINs were introduced they have slowly gained traction worldwide in their usage ISINs are being introduced worldwide and are the most popular global securities identifier Trading clearing and settlement systems in many countries have adopted ISINs as a secondary measure of identifying securities Some countries mainly in Europe have moved to using the ISIN as their primary means of identifying securities In addition new European regulations such as Solvency II increasingly require the ISIN to be reported 3 Commercial modelThe ISIN is generally included in services sold by financial data vendors and intermediaries These services are normally paid services as more value added data is included with the information In general the issuer of a security will include the ISIN in issuance papers or other documentation for identification purposes ControversyIn 2009 Standard amp Poor s was charged by the European Commission EC with abusing its position in licensing international securities identification codes for United States securities by requiring European financial firms and data vendors to pay licensing fees for their use This behaviour amounts to unfair pricing the EC said in its statement of objections which lays the groundwork for an adverse finding against S amp P The numbers are indispensable for a number of operations that financial institutions carry out for instance reporting to authorities or clearing and settlement and cannot be substituted 4 5 In 2011 Standard and Poor s provided six undertakings 6 to the European Commission to remedy the situation The agreement is applicable to all consuming companies in the European Economic Area These expired at the end of 2016 ExamplesThe examples below describes one approach for applying the Luhn algorithm on two different ISINs The difference in the two examples has to do with if there are an odd or even number of digits after converting letters to number Since the NSIN element can be any alpha numeric sequence 9 characters an odd number of letters will result in an even number of digits and an even number of letters will result in an odd number of digits For an odd number of digits the approach in the first example is used For an even number of digits the approach in the second example is used The Luhn algorithm can also be applied in the same manner for both types or lengths alternating multiply the string of digits by 1 and 2 starting from the end of the string being more generic Apple Inc Apple Inc ISIN US0378331005 expanded from CUSIP 037833100 The main body of the ISIN is the original CUSIP assigned in the 1970s The country code US has been added on the front and an additional check digit at the end The country code indicates the country of issue The check digit is calculated using the Luhn algorithm Convert any letters to numbers by taking the ASCII code of the capital letter and subtracting 55 U 30 S 28 US037833100 gt 30 28 037833100Collect odd and even characters 3028037833100 3 2 0 7 3 1 0 0 8 3 8 3 0 Multiply the group containing the rightmost character which is the FIRST group by 2 6 4 0 14 6 2 0 Add up the individual digits 6 4 0 1 4 6 2 0 0 8 3 8 3 0 45Take the 10s modulus of the sum 45 mod 10 5Subtract from 10 10 5 5Take the 10s modulus of the result this final step is important in the instance where the modulus of the sum is 0 as the resulting check digit would be 10 5 mod 10 5So the ISIN check digit is five Treasury Corporation of Victoria TREASURY CORP VICTORIA 5 3 4 2005 2016 ISIN AU0000XVGZA3 The check digit is calculated using the Luhn algorithm Convert any letters to numbers by taking the ASCII code of the capital letter and subtracting 55 A 10 G 16 U 30 V 31 X 33 Z 35 AU0000XVGZA gt 10 30 0000 33 31 16 35 10 Collect odd and even characters 103000003331163510 1 3 0 0 3 3 1 3 1 0 0 0 0 3 1 6 5 0 Multiply the group containing the rightmost character which is the SECOND group by 2 0 0 0 0 6 2 12 10 0 Add up the individual digits 1 3 0 0 3 3 1 3 1 0 0 0 0 6 2 1 2 1 0 0 27Take the 10s modulus of the sum 27 mod 10 7Subtract from 10 10 7 3Take the 10s modulus of the result this final step is important in the instance where the modulus of the sum is 0 as the resulting check digit would be 10 3 mod 10 3So the ISIN check digit is three BAE Systems BAE Systems ISIN GB0002634946 expanded from SEDOL 000263494The main body is the SEDOL padded on the front with the addition of two zeros The country code GB is then added on the front and the check digit on the end as in the example above Check digit flaw in ISINThe Treasury Corporation of Victoria ISIN illustrates a flaw in ISIN s check digit algorithm which allows transposed letters Suppose the ISIN was mis typed as AU0000VXGZA3 instead of AU0000XVGZA3 A 10 G 16 U 30 V 31 X 33 Z 35 AU0000VXGZA gt 10 30 00 00 31 33 16 35 10 Collect odd and even characters 103000003133163510 1 3 0 0 3 3 1 3 1 0 0 0 0 1 3 6 5 0 Multiply the group containing the rightmost character which is the SECOND group by 2 0 0 0 0 2 6 12 10 0 Add up the individual digits 1 3 0 0 3 3 1 3 1 0 0 0 0 2 6 1 2 1 0 0 27Take the 10s modulus of the sum 27 mod 10 7Subtract from 10 10 7 3Take the 10s modulus of the result this final step is important in the instance where the modulus of the sum is 0 as the resulting check digit would be 10 3 mod 10 3So the ISIN check digit is still three even though two letters have been transposed Such flaw against a single transposed pair of letters or digits would have been avoided using two check digits instead of just one i e a 97 modulus instead of the 10 modulus like in IBAN numbers which may also mix letters and digits Some protocols require the transmission of additional check digits added to the full ISIN number See alsoApproved Publication Arrangement Central Index Key CUSIP ISO 10383 ISO 10962 LEI NSIN Request for quoteReferences Coordinated Portfolio Investment Survey Guide Second Edition International Monetary Fund 2002 Washington DC Appendix VII International Securities Identification Number ISIN Code System PDF imf org Archived PDF from the original on 2017 06 14 Commission Regulation EC No 809 2004 of 29 April 2004 implementing Directive 2003 71 EC of the European Parliament and of the Council as regards information contained in prospectuses as well as the format incorporation by reference and publication of such prospectuses and dissemination of advertisements Text with EEA relevance europa eu Archived copy PDF Archived PDF from the original on 2016 10 07 Retrieved 2016 07 20 a href Template Cite web html title Template Cite web cite web a CS1 maint archived copy as title link Securities Technology Monitor ed 2009 EC Charges S amp P With Monopoly Abuse Archived from the original on 2011 07 16 Finextra ed 2009 European Commission Accuses S amp P of Monopoly Abuse over Isin Fees Archived from the original on 2011 03 12 http ec europa eu competition antitrust cases dec docs 39592 39592 2152 5 pdf bare URL PDF External links Wikidata has the property ISIN P946 see uses ISIN at the International Organization for Standardization ISIN History describes in detail ISIN code history Retrieved from https en wikipedia org w index php title International Securities Identification Number amp oldid 1099037077, wikipedia, wiki, book, books, library,

article

, read, download, free, free download, mp3, video, mp4, 3gp, jpg, jpeg, gif, png, picture, music, song, movie, book, game, games.