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

The Changing Nature of Reality Shows in India

It's been almost two decades since the modern day reality shows started in India. And the nature of these reality shows has changed drastically during this time. "Kaun Banega Crorepati (KBC)" is no longer a show just about knowledge, "Indian Idol" and "Sa Re Ga Ma Pa" are no longer just singing shows. They all have become entertainment shows. This post is an attempt to find out the reasons of this transition, analyze the current nature of these shows and assess their impact. Reasons of this change Competition from TV Serials / Soap Opera TV serials or Soap Opera as it is commonly known is very popular among the Indian masses. India being a country where family ties are very strong, for a long time, the main theme in most popular TV shows has been "family drama". Additionally, there is no dearth of TV channels, actors, producers and the crew. TV show and film production is a major employment generator in India. And so the episodes of serials a...

Local domain name resolution using /etc/hosts

The /etc/hosts file is a powerful mechanism for managing the information about hosts in the local network in the absence of a local DNS server. Setup We have 4 VMs in the local /24 network. The following are the details: vm-1-ubuntu-16-04 - 10.0.1.11 vm-2-ubuntu-16-04 - 10.0.1.12 vm-1-ubuntu-18-04 - 10.0.1.21 vm-2-ubuntu-18-04 - 10.0.1.22 The VMs are reachable via their IP address but not by their hostnames. This is problematic because we have to remember their IP addresses everytime we want to access these hosts. It is would be much simpler to remember and access the servers by their hostnames. For that we need some sort of mapping between the IP addresses and their corresponding host names. There are 3 common ways of achieving this mapping. Setup a DNS server which handles resolution for your local network. Use an existing DNS server of the local Internet Service Provider (ISP) or any other higher level ISP. Note that a public static IP address is required for this s...

Manage system hostname with hostnamectl

This article explains the simplest method to set hostname and Fully Qualified Domain Name (FQDN/fqdn) of any given system using hostnamectl Check that hostnamectl is present on the system by typing it in a shell. You will see output similar to the one given below. In case hostnamectl is not found, it is a good idea to install it. sudo apt update sudo apt install systemd-services Verify the static hostname given above using the following command: Also verify it by checking /etc/hostname file Change the hostname and set the desired hostname by running the following command and authenticating with the password. hostnamectl set-hostname <hostname> Start a new shell session or reconnect to the server to see the change in the hostname Again run above steps to verify that hostname has been changed correctly. Configure FQDN While the above process may suffice to identify the host in the local network, it is not enough when the host is to be identifi...