Baselight

Tesla Stock Price

06/29/2017 to 03/17/2017

@kaggle.rpaguirre_tesla_stock_price

Loading...
Loading...

About this Dataset

Tesla Stock Price

Context

The subject matter of this dataset explores Tesla's stock price from its initial public offering (IPO) to yesterday.

Content

Within the dataset one will encounter the following:

  1. The date - "Date"

  2. The opening price of the stock - "Open"

  3. The high price of that day - "High"

  4. The low price of that day - "Low"

  5. The closed price of that day - "Close"

  6. The amount of stocks traded during that day - "Volume"

  7. The stock's closing price that has been amended to include any distributions/corporate actions that occurs before next days open - "Adj[usted] Close"

Acknowledgements

Through Python programming and checking Sentdex out, I acquired the data from Yahoo Finance. The time period represented starts from 06/29/2010 to 03/17/2017.

Inspiration

What happens when the volume of this stock trading increases/decreases in a short and long period of time? What happens when there is a discrepancy between the adjusted close and the next day's opening price?

Tables

Tesla Tesla

@kaggle.rpaguirre_tesla_stock_price.tesla_tesla
  • 75.68 KB
  • 1692 rows
  • 7 columns
Loading...

CREATE TABLE tesla_tesla (
  "date" TIMESTAMP,
  "open" DOUBLE,
  "high" DOUBLE,
  "low" DOUBLE,
  "close" DOUBLE,
  "volume" BIGINT,
  "adj_close" DOUBLE
);

Share link

Anyone who has the link will be able to view this.