41 lines
751 B
Markdown
41 lines
751 B
Markdown
# `zfin splits`
|
|
|
|
Show stock-split history for a symbol.
|
|
|
|
```
|
|
Usage: zfin splits <SYMBOL>
|
|
```
|
|
|
|
Lists each split's effective date and ratio. Split data comes from
|
|
Polygon (`POLYGON_API_KEY`), merged with per-row split factors from
|
|
Tiingo's price series (which rescues events Polygon's reference
|
|
endpoint occasionally misses).
|
|
|
|
## Example
|
|
|
|
```bash
|
|
zfin splits AAPL
|
|
```
|
|
|
|
```
|
|
Split History for AAPL
|
|
========================================
|
|
Date Ratio
|
|
------------ ----------
|
|
2020-08-31 4:1
|
|
2014-06-09 7:1
|
|
2005-02-28 2:1
|
|
2000-06-21 2:1
|
|
1987-06-16 2:1
|
|
|
|
5 split(s)
|
|
```
|
|
|
|
## See also
|
|
|
|
- [`divs`](divs.md) -- dividend history for a symbol.
|
|
- [`history`](history.md) -- split-adjusted price history.
|
|
|
|
---
|
|
|
|
[CLI command reference](index.md)
|