Tesla Share Price Since It Listed
Dataset with Tesla share price of last 12 years with relevant attributes.
@kaggle.surajjha101_tesla_share_price_for_last_5_years
Dataset with Tesla share price of last 12 years with relevant attributes.
@kaggle.surajjha101_tesla_share_price_for_last_5_years
There's the data of last 5 years of Tesla stock price having attributes such as date itself, it's opening bid price, high and low of the days, close price and the volume of trade.
Certain questions can be answered using the dataset such as:
Q: Enhance the data quality by adding "percent change" attribute (as compared to last day close price of-coarse)
Q: How the stock price was impacted in the wake of COVID Pandemic (which came at significant level around 1st week of Mar 2020 onwards)
Q: At what days of the week it shows uptrend & downtrend more often (if it shows any such specific trend at all)
Q: When it showed dramatic bullish trend and the possible potential reason behind it?
Kindly upvote if it helps. Will be appreciated.
Thank You Happy Learning ^_^
CREATE TABLE tesla_dataset (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"adj_close" DOUBLE,
"volume" BIGINT
);Anyone who has the link will be able to view this.