1 M+ Real Time Stock Market Data [NSE/BSE]
Real time price volume data for select Nifty 50 stocks from both NSE/BSE
@kaggle.deeiip_1m_real_time_stock_market_data_nse
Real time price volume data for select Nifty 50 stocks from both NSE/BSE
@kaggle.deeiip_1m_real_time_stock_market_data_nse
CREATE TABLE instruments (
"instrument_token" BIGINT,
"exchange_token" BIGINT,
"tradingsymbol" VARCHAR,
"name" VARCHAR,
"last_price" DOUBLE,
"expiry" TIMESTAMP,
"strike" DOUBLE,
"tick_size" DOUBLE,
"lot_size" BIGINT,
"instrument_type" VARCHAR,
"segment" VARCHAR,
"exchange" VARCHAR
);
CREATE TABLE log_inf (
"timestamp" TIMESTAMP,
"instrument_token" BIGINT,
"last_price" DOUBLE,
"volume" BIGINT,
"sell_quantity" BIGINT,
"last_quantity" BIGINT,
"change" DOUBLE,
"average_price" DOUBLE,
"n__open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"depth_buy_price_0" DOUBLE,
"depth_buy_orders_0" BIGINT,
"depth_buy_quantity_0" BIGINT,
"depth_sell_price_0" DOUBLE,
"depth_sell_orders_0" BIGINT,
"depth_sell_quantity_0" BIGINT,
"depth_buy_price_1" DOUBLE,
"depth_buy_orders_1" BIGINT,
"depth_buy_quantity_1" BIGINT,
"depth_sell_price_1" DOUBLE,
"depth_sell_orders_1" BIGINT,
"depth_sell_quantity_1" BIGINT,
"depth_buy_price_2" DOUBLE,
"depth_buy_orders_2" BIGINT,
"depth_buy_quantity_2" BIGINT,
"depth_sell_price_2" DOUBLE,
"depth_sell_orders_2" BIGINT,
"depth_sell_quantity_2" BIGINT,
"depth_buy_price_3" DOUBLE,
"depth_buy_orders_3" BIGINT,
"depth_buy_quantity_3" BIGINT,
"depth_sell_price_3" DOUBLE,
"depth_sell_orders_3" BIGINT,
"depth_sell_quantity_3" BIGINT,
"depth_buy_price_4" DOUBLE,
"depth_buy_orders_4" BIGINT,
"depth_buy_quantity_4" BIGINT,
"depth_sell_price_4" DOUBLE,
"depth_sell_orders_4" BIGINT,
"depth_sell_quantity_4" BIGINT
);
Anyone who has the link will be able to view this.