Stock Price Data (Gail (India))
Stock Price data of gail industry
@kaggle.mohamedfahim003_stock_price_data_gail_india
Stock Price data of gail industry
@kaggle.mohamedfahim003_stock_price_data_gail_india
This dataset provides comprehensive stock market data, comprising minute-level and daily records. It includes two CSV files: one containing day-wise data and the other minute-wise data for various stocks. Each record within the dataset encompasses crucial market indicators such as open, high, low, close prices, and trading volumes.
The minute-level dataset captures stock market dynamics with granularity, enabling detailed analyses of intra-day trends and patterns. On the other hand, the daily dataset provides aggregated information summarizing the entire trading day's performance for each stock.
CREATE TABLE gail_data (
"date" TIMESTAMP,
"time" VARCHAR,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"volume" DOUBLE
);Anyone who has the link will be able to view this.