Tata Motors - Hist. Stock Price - Dual Listing
Historical Stock Price (01-Oct-2020 to 01-Oct-2021) from BSE, NSE & NYSE
@kaggle.kkhandekar_tata_motors_hist_stock_price_dual_listing
Historical Stock Price (01-Oct-2020 to 01-Oct-2021) from BSE, NSE & NYSE
@kaggle.kkhandekar_tata_motors_hist_stock_price_dual_listing
Dual listing refers to a listing of any security on two or more different exchanges. Companies use dual listing because of its benefits such as additional liquidity, increased access to capital, and the ability for its shares to trade for longer periods if the exchanges on which its shares are listed are in different time zones outweigh the costs of a second listing. Some exchanges have a number of listing categories for companies that seek a dual listing, each with different requirements and benefits.
Dual listing system precludes the need for a merger. In the case of two companies operating in two different countries entering into an equity alliance, the dual listing system would allow these companies to retain their separated legal identities and continue to be listed and traded on the stock exchanges of the two countries.
Tata motors is India’s largest automobile company, is a dual listed company and traded on both the Bombay Stock Exchange, National Stock Exchange as well as on the New York Stock Exchange. Infosys is also listed on NASDAQ along with Bombay Stock Exchange (BSE). Wipro is a dual listed Indian technology giant on Bombay Stock Exchange and New York Stock Exchange and many more like Larsen and Turbo, ITC Limited.
Yahoo Finance
I was curious to understand if there were any stocks that were traded in multiple stock exchanges. Today, through this research I learned about Dual Listing and thus sharing the knowledge and the dataset with you all.
CREATE TABLE tatamotors_bse_01oct20_01oct21 (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"adj_close" DOUBLE,
"volume" DOUBLE
);CREATE TABLE tatamtrdvr_nse_01oct20_01oct21 (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"adj_close" DOUBLE,
"volume" DOUBLE
);CREATE TABLE ttm_nyse_01oct20_01oct21 (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"adj_close" DOUBLE,
"volume" BIGINT
);Anyone who has the link will be able to view this.