Skip to main content

Share Market Guide: Bonus Share Issue

Recently, RITES Ltd., a publicly listed government company in India announced its bonus issue. The issue had an ex date of 8th August, 2019. I participated in the bonus issue and received my bonus shares in my demat account on 23rd August, 2019. This post is based on my personal experience. Let us understand how bonus issues work through the example of RITES.

What is Bonus Issue?

Bonus share issue is a way for the company to pass on the profits to the shareholders. It involves giving free additional shares to the existing shareholders in proportion to their current holding. A bonus issue does not require much money from the side of the company. The company is only required to issue additional shares. Therefore, it is a better way of rewarding shareholders than paying dividends if the company is low on cash.

Bonus Ratio

This ratio determines the number of bonus shares that you will get based on the number of shares that you have. For example, in case of RITES, the Bonus Ratio was 1:4 (one-for-four) which means that a shareholders will get 1 fully paid up equity share for every 4 equity shares held by the shareholder. All the bonus shares have the same face value as the original shares. In simple words, fully paid-up shares of same face value means that the new shares are identical to the original shares and cannot be distinguished in any way.

Record Date

Since the shares are constantly traded in open market, in order to determine the number of shares held by each shareholder, a date is fixed. This is called record date. The bonus issue is calculated based on the number of shares that you hold on the record date. For example, RITES bonus issue had a record date of 11th August, 2019. But at what time exactly, would the holdings be recorded on the share market? That's where the "ex date" comes in.

Ex Date

This is the most important date in any bonus issue. As there is a possible time difference between the time the market holding is recorded on stock exchanges and the time it is reported to the company, the stock exchanges determine another date which is two to three working days before the actual record date. This makes it convenient for the stock exchanges to report the holdings at the record date given by the company. This date is called "ex date". The stock exchanges take a snapshot of the shareholding before the start of trading on this date and lock it for the record date. This means that whatever your shareholding is before the start of trading on ex date is your shareholding for the bonus issue. For example, ex date of 8th August, 2019 was setup for RITES bonus issue. This means that whatever the holdings were before the start of trading on 8th August would be reported to the company on the record date of 11th August, 2019.

Carefully examine the wording here. Before the start of trading on ex date means whatever was the shareholding at the close of one working day before the ex date. In this case, it means that whatever was the holding pattern at the end of working day on 7th August, 2019 would be considered for the bonus issue.

Another interesting thing is that even if you sell your shares on or after the ex date i.e. on or after 8th August, 2019 in this case, you will still receive the bonus shares because you had held the shares before the ex date when the holding was recorded by the stock exchanges.

Share Price Changes

The share price usually changes on ex date. This is because, the supply of shares in the market has increased without any cost to shareholders, therefore the value of shares decreases in the proportion of the bonus ratio. For example, here for the bonus ratio of 1:4, there will be a total of 5 shares if you initially hold 4 shares. That means the ratio of shares after to shares before is 5:4. So, price ratio after to price ratio before is 4:5 i.e. price on ex date is 4/5th the price before the ex date.

Remember the price changes on ex date to balance out a market condition but you do not get the bonus shared until the issue date

Issue date

This is the date on which you get the bonus shares deposited into your demat account. I received my bonus shares for RITES on 23rd August, 2019.

Update on 25th September, 2019:

Fractional Allocation Adjustment:

Often there is a fractional allocation of shares which cannot be deposited in demat account. Such fractional shares are automatically sold in the open market and the money is directly transferred to the bank account of the shareholder.

For example, let us say someone had 10 shares of RITES, according to the ratio, the person would be eligible to get 2.5 bonus shares, but one cannot hold fractional shares. In such a case, the person would get 2 bonus shares. The fractional allocation of all the shareholders would be combined and sold in the open market. All the shareholder would get money proportional to their fractional allocation. In this case, the person would get money equal to half the price of one share transferred into his/her bank account.

Comments

Popular posts from this blog

CRIF HighMark Credit Report Application Process

As per the RBI circular of 2017, you are entitled to get one free credit report every calendar year from each credit bureaus in India. CRIF HighMark is one of the four credit bureaus in India. This article will focus on creating a new account and getting your yearly free credit report. Visit the official website of CRIF HighMark https://www.crifhighmark.com/your-credit-score  In the next screen, click on " Get Your Score Now"  Register After registering, follow the below steps: Enter Personal Details Full Name DOB Email ID Mobile Number Gender Father's Name or Spouse Name Identification PAN or UID necessary Rest optional Communication Address CAPTCHA Review Terms of Use and Click Submit Choose free report Click " No Thanks, Take me to my FREE report " below the Upgrade me button. You will receive a confirmation email with your username and password and activation link. Click on activation link to...

My Entry into the World of Credit Cards

After joining my job in June 2018, my salary account was opened in ICICI Bank. During the account opening process, I was offered a Life Time Free (LTF) credit card. Simply put, this was my first chance to get into the credit world without any extra hassle because first of all, neither was I aware of the concept of credit scores nor I had any credit history and secondly, I was just curious about credit cards after seeing of my father use his credit cards with extra caution and the monthly event of credit card bill payment that used to happen at my home. And in that sudden moment of joy, I made my first mistake in the credit world. Representative Image (Source: https://jessepollak.github.io/card/) Now if your guess is that I started spending crazy amounts of money which I couldn't repay, then you are WRONG! I am a miserly person. Money doesn't leave my hands and in general, my credit utilization has never exceeded 5% of my credit limit. So coming back to my first mis...

Generate Large Files in Linux using dd

The programming community often requires large files for stress testing programmes. For example, sometimes such files are required to check the response time of certain programme or testing request handling capacity of servers. Many times, it does not matter what the contents of the file are, however, it is often difficult to find such large files when the need arises. Linux provides us a fast, efficient way of generating such huge files through simple command line options. For the purposes of this demo, I am using Ubuntu 16.04 and 18.04 linux distros. Ubuntu provides dd command to create such huge files in a matter of seconds. A typical dd command to create a 1 GB file is given below. dd if=/dev/zero of=big_file.txt count=1024 bs=1048576 parameters of dd: if - input file from which the content is read of - output file where the content is written count - number of blocks in output file bs - number of bytes in each block The above command creates a file named big_file.txt...