- SEDOL
SEDOL stands for "Stock Exchange Daily Official List", a list of security identifiers used in the
United Kingdom andIreland for clearing purposes. The numbers are assigned by theLondon Stock Exchange , on request by the security issuer. SEDOLs serve as theNSIN for all securities issued in theUnited Kingdom and are therefore part of the security's ISIN as well.Description
SEDOLs are seven characters in length, consisting of two parts: a six-place alphanumeric code and a trailing
check digit . SEDOLs issued prior to January 26, 2004 were composed only of numbers. For those older SEDOLs, those from Asia and Africa typically begin with 6, those from the UK and Ireland (until Ireland joined the EU) typically begin with 0 or 3 those from Europe typically began with 4, 5 or 7 and those from the Americas began with 2. After January 26, 2004, SEDOLs were changed to be alpha-numeric and are issued sequentially, beginning with B000009. At each character position numbers precede letters and vowels are never used. All new SEDOLs, therefore, begin with a letter. Ranges beginning with 9 are reserved for end user allocation.The check digit for a SEDOL is chosen to make the total weighted sum of all seven characters a multiple of 10. The check digit is computed using a weighted sum of the first six characters. Letters have value 9 plus their alphabet position, such that B = 11 and Z = 35. While vowels are never used in SEDOLs, they are not ignored when computing this weighted sum (e.g. H = 17 and J = 19, even though I is not used), simplifying code to compute this sum. The resulting string of numbers is then multiplied by the weighting factor as follows:
First 1 Second 3 Third 1 Fourth 7 Fifth 3 Sixth 9 Seventh 1 (the check digit)
The character values are multiplied by the weights. The check digit is chosen to make the total sum, including the check digit, a multiple of 10, which can be calculated from the weighted sum of the first six characters as (10 - (this sum
modulo 10)modulo 10.For British and Irish securities, SEDOLs are converted to ISINs by padding the front with two zeros, then adding the country code on the front and the ISIN check digit at the end.
Example
BAE Systems : 0263494The checksum can be calculated by multiplying the first six digits by their weightings:
(0×1, 2×3, 6×1, 3×7, 4×3, 9×9) = (0, 6, 6, 21, 12, 81)
Then summing up the results:
0 + 6 + 6 + 21 + 12 + 81 = 126
The check digit is then calculated by:
(10 - (126
modulo 10))modulo 10 = (10 - 6)modulo 10 = 4In Delphi
=In J=(other formulations as possible; some twice as fastCitation
author = Bron, Dan; Rich, Henry; Hui, Roger
title = Check digit utility
url = http://www.jsoftware.com/pipermail/programming/2008-August/011582.html] ):sn =. '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ' NB. SEDOL numerals acs =: (10 | 1 3 1 7 3 9 +/@:* -)&.(sn i. |:) NB. ChecksumIn Perl
=In Python=In
Visual Basic Notes
External links
* [http://www.chriswareham.demon.co.uk/software/validate_sedol.c SEDOL validation code in C]
* [http://www.londonstockexchange.com/en-gb/products/informationproducts/sedol/ London Stock Exchange]
* [http://www.londonstockexchange.com/NR/rdonlyres/52511C77-4BF3-43E5-A4AF-F86C871EA7C1/0/SMFTechnicalSpecificationV6Clean.doc SEDOL Master File Technical Spec. Word Document (see section 7)]
* [http://www.rosettacode.org/wiki/SEDOL SEDOL on rosettacode.org]
Wikimedia Foundation. 2010.