NSE India Stocks (companies)
Intraday datasets (2015-2016)
@kaggle.ramamet4_nse_company_stocks
Intraday datasets (2015-2016)
@kaggle.ramamet4_nse_company_stocks
In this study, large number of National Stock Exchange(NSE), India
stocks under different sectors are mined from various financial websites
and data analytic steps are followed. Primary goal of this work
is to explore the hidden context patterns between diverse group of
stocks and discover the predictive analytic knowledge using machine
learning algorithms.
The transaction dataset are captured for NSE stocks using statistical computing software R.
The	price of the stock	is determined	 by the market forces.	Buyers and
sellers quote the preferred	price, so	there is a dynamic 	data	day	by	day.
Though	it	is	difficult	to	identify	when	to	buy	and	sell	the	stock,	technical
indicators	may	support	us	to	forecast	the	future	price
A data frame with 8 variables: index, date, time, open, high, low, close and id. For each year from 2013 to 2016, the number of trading data of each minute of given each date. The currency of the price is Indian Rupee (INR).
References
[1] Brett Lantz, Machine Learning with R . Packt Publishing Ltd., Birmingham, UK , 2015.
[2] The R Project https://www.r-project.org/
[3] https://finance.yahoo.com/
[4] https://www.google.com/finance
[5] https://www.nseindia.com/
machine learning (NSE stocks)
CREATE TABLE nsecomp_1 (
  "unnamed_0" BIGINT  -- Unnamed: 0,
  "code" VARCHAR,
  "date" DOUBLE,
  "time" VARCHAR,
  "open" DOUBLE,
  "high" DOUBLE,
  "low" DOUBLE,
  "close" DOUBLE,
  "volume" DOUBLE
);CREATE TABLE nsecomp_2 (
  "unnamed_0" BIGINT  -- Unnamed: 0,
  "code" VARCHAR,
  "date" BIGINT,
  "time" VARCHAR,
  "open" DOUBLE,
  "high" DOUBLE,
  "low" DOUBLE,
  "close" DOUBLE,
  "volume" BIGINT
);CREATE TABLE nsecomp_3 (
  "unnamed_0" BIGINT  -- Unnamed: 0,
  "code" VARCHAR,
  "date" BIGINT,
  "time" VARCHAR,
  "open" DOUBLE,
  "high" DOUBLE,
  "low" DOUBLE,
  "close" DOUBLE,
  "volume" BIGINT
);CREATE TABLE nsecomp_4 (
  "unnamed_0" BIGINT  -- Unnamed: 0,
  "code" VARCHAR,
  "date" BIGINT,
  "time" VARCHAR,
  "open" DOUBLE,
  "high" DOUBLE,
  "low" DOUBLE,
  "close" DOUBLE,
  "volume" BIGINT
);CREATE TABLE nsecomp_5 (
  "unnamed_0" BIGINT  -- Unnamed: 0,
  "code" VARCHAR,
  "date" BIGINT,
  "time" VARCHAR,
  "open" DOUBLE,
  "high" DOUBLE,
  "low" DOUBLE,
  "close" DOUBLE,
  "volume" BIGINT
);Anyone who has the link will be able to view this.