IPO & NIFTY (2010 - 2021) Dataset - India
IPO data with Market index in Indian Capital Market since 2010
@kaggle.balabaskar_indian_ipo_dataset_2010_2021
IPO data with Market index in Indian Capital Market since 2010
@kaggle.balabaskar_indian_ipo_dataset_2010_2021
BRIEF INTRO
This IPO dataset contains the data about companies that did their initial public offering in the Indian capital market. Also, this dataset will help us to analyze the market sentiment over time based on IPO listing and which industry had good positive sentiment over time.
ABOUT IPO
An initial public offering (IPO) refers to the process of offering shares of a private corporation to the public in a new stock issuance. Public share issuance allows a company to raise capital from public investors. The transition from a private to a public company can be an important time for private investors to fully realize gains from their investment as it typically includes share premiums for current private investors. Meanwhile, it also allows public investors to participate in the offering.
FILES AVAILABLE
2.NIFTY_2010_2021.csv - contains market index price information during this period. This data helps to understand market sentiment during this period for IPO analysis.
CREATE TABLE ipo_2010_2021 (
"date" VARCHAR,
"ipo_name" VARCHAR,
"profile" VARCHAR,
"issue_size_in_crores" DOUBLE -- Issue Size (in Crores),
"qib" DOUBLE,
"hni" DOUBLE,
"rii" DOUBLE,
"total" DOUBLE,
"issue" DOUBLE,
"listing_open" DOUBLE,
"listing_close" DOUBLE,
"listing_gains" DOUBLE -- Listing Gains(%),
"cmp" DOUBLE,
"current_gains" DOUBLE -- Current Gains (%)
);
CREATE TABLE nifty_2010_2021 (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"shares_traded" BIGINT,
"turnover_rs_cr" DOUBLE -- Turnover (Rs. Cr)
);
Anyone who has the link will be able to view this.