Commit
·
18b08b4
1
Parent(s):
4076087
update readme
Browse files
README.md
CHANGED
@@ -288,6 +288,15 @@ All datasets are publicly accessible and stored in Parquet format.
|
|
288 |
| item_name | VARCHAR | Name of the specific financial line item being reported |
|
289 |
| item_value | DECIMAL(38,2) | Numerical value of the financial item, with 2 decimal places precision |
|
290 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
291 |
|
292 |
#### Querying Datasets
|
293 |
|
@@ -425,3 +434,10 @@ Use the following SQL queries in [DuckDB](https://shell.duckdb.org/) to retrieve
|
|
425 |
FROM 'https://huggingface.co/datasets/bwzheng2010/yahoo-finance-data/resolve/main/data/stock_revenue_breakdown.parquet'
|
426 |
WHERE symbol='TSLA';
|
427 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
288 |
| item_name | VARCHAR | Name of the specific financial line item being reported |
|
289 |
| item_value | DECIMAL(38,2) | Numerical value of the financial item, with 2 decimal places precision |
|
290 |
|
291 |
+
18. **stock_shares_outstanding**
|
292 |
+
- **Source:** `https://ycharts.com/companies/${symbol}/shares_outstanding`
|
293 |
+
- **Description:** Provides Shares Outstanding.
|
294 |
+
- **Columns:**
|
295 |
+
| Column Name | Column Type | Description |
|
296 |
+
|--------------|-----------------|--------------------------|
|
297 |
+
| symbol | VARCHAR | Stock ticker symbol |
|
298 |
+
| report_date | VARCHAR | Reporting date |
|
299 |
+
| shares_outstanding | Long | Shares Outstanding |
|
300 |
|
301 |
#### Querying Datasets
|
302 |
|
|
|
434 |
FROM 'https://huggingface.co/datasets/bwzheng2010/yahoo-finance-data/resolve/main/data/stock_revenue_breakdown.parquet'
|
435 |
WHERE symbol='TSLA';
|
436 |
```
|
437 |
+
|
438 |
+
18. **stock_shares_outstanding**
|
439 |
+
```sql
|
440 |
+
SELECT * FROM
|
441 |
+
'https://huggingface.co/datasets/bwzheng2010/yahoo-finance-data/resolve/main/data/stock_shares_outstanding.parquet'
|
442 |
+
WHERE symbol='TSLA';
|
443 |
+
```
|