Tunisian Stock Market
Curated list of all tunisian stocks historical data starting from the year 2010
@kaggle.amariaziz_tunisian_stock_market
Curated list of all tunisian stocks historical data starting from the year 2010
@kaggle.amariaziz_tunisian_stock_market
I web-scraped historical data for all listed companies from 01-01-2010 to 01-30-2022 from ilboursa.
On the official Tunisian stock exchange, you can actually download historical data as .csv but links for data before 2016 don't work
Dataset consists of the following files:
You can do a couple of things using this data
CREATE TABLE all_data (
"ticker" VARCHAR,
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"volume" BIGINT
);CREATE TABLE sotcks_list (
"name" VARCHAR,
"ticker" VARCHAR
);CREATE TABLE stocks_market_cap (
"ticker" VARCHAR,
"market_cap" DOUBLE
);Anyone who has the link will be able to view this.