File size: 2,367 Bytes
8d5f822
 
 
 
 
 
 
 
11dd1b5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ff21f67
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
db44293
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
---
license: apache-2.0
task_categories:
- text-classification
language:
- en
tags:
- finance
dataset_info:
  features:
  - name: date
    dtype: timestamp[ns]
  - name: symbol
    dtype: string
  - name: eps
    dtype: float64
  - name: estimated_eps
    dtype: float64
  - name: forecast_eps
    dtype: float64
  - name: earning
    dtype: bool
  - name: consensus
    dtype: float64
  - name: actual
    dtype: float64
  - name: diff
    dtype: float64
  - name: money_flow_index
    dtype: float64
  - name: ultimate_oscillator
    dtype: float64
  - name: close
    dtype: float64
  - name: volume
    dtype: float64
  - name: change_percent
    dtype: float64
  - name: marketcap
    dtype: float64
  - name: marketcap_volume_ratio
    dtype: float64
  - name: three_month
    dtype: float64
  - name: ten_year
    dtype: float64
  - name: ten_three_diff
    dtype: float64
  splits:
  - name: train
    num_bytes: 71813
    num_examples: 500
  download_size: 42127
  dataset_size: 71813
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
---

# Stock Metrics Dataset

This dataset contains daily financial metrics and indicators for selected stocks (AMD, INTC) from 2023-01-01 to 2023-12-31. The dataset combines various financial metrics including earnings data, technical indicators, and market yields.

## Features

### Stock-specific Metrics
- `date`: Trading date
- `symbol`: Stock ticker symbol (AMD or INTC)
- `eps`: Actual Earnings Per Share
- `estimated_eps`: Analyst-estimated EPS
- `forecast_eps`: Forecasted EPS
- `earning`: Boolean flag indicating if it's an earnings announcement date
- `consensus`: Analyst consensus rating
- `actual`: Actual market performance metric
- `diff`: Difference between actual and expected performance

### Technical Indicators
- `money_flow_index`: Momentum indicator combining price and volume (0-100)
- `ultimate_oscillator`: Technical indicator combining multiple timeframes
- `close`: Daily closing price
- `volume`: Daily trading volume
- `change_percent`: Daily price change percentage
- `marketcap`: Company market capitalization
- `marketcap_volume_ratio`: Ratio of market cap to trading volume

### Yield Data
- `three_month`: 3-month Treasury yield
- `ten_year`: 10-year Treasury yield
- `ten_three_diff`: Spread between 10-year and 3-month yields (yield curve indicator)