Metadata-Version: 2.4
Name: openassetpricing
Version: 0.0.2
Summary: Open asset pricing package with example dependencies
Author: Peng Li, Andrew Chen, Tom Zimmermann
Author-email: Peng Li <pl750@bath.ac.uk>, Andrew Chen <andrew.y.chen@frb.gov>, Tom Zimmermann <tom.zimmermann@uni-koeln.de>
License: GPLv2
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: polars
Requires-Dist: pandas
Requires-Dist: requests
Requires-Dist: tabulate
Requires-Dist: wrds
Requires-Dist: pyarrow
Requires-Dist: beautifulsoup4
Provides-Extra: examples
Requires-Dist: matplotlib; extra == "examples"
Requires-Dist: numpy; extra == "examples"
Requires-Dist: scikit-learn; extra == "examples"
Requires-Dist: seaborn; extra == "examples"
Requires-Dist: statsmodels; extra == "examples"
Dynamic: author

<h1 align="center">openassetpricing</h1>

<p align="center">
<b><i>Retrieve Open Source Asset Pricing Data (Chen and Zimmermann)</i></b>
</p>

**openassetpricing** is a Python package to download data from Open
Source Asset Pricing (OSAP).

There are 212 cross-sectional predictors.

- **Download predictor portfolio returns**: various portfolio construction
  methods: original paper methods, deciles, quintiles, equal-weighted,
  value-weighted, price filter, and so on ...
- **Download firm characteristics**: 209 from OSAP + 3 from CRSP (Price, Size, STreversal)

Learn more about Chen and Zimmermann data:
[Data website](https://www.openassetpricing.com/) |
[Github code](https://github.com/OpenSourceAP/CrossSection/) |
[Publication](https://www.nowpublishers.com/article/Details/CFR-0112)

## Installation
- **Option 1: install from PyPI**
```bash
pip install openassetpricing

# To upgrade
pip install -U openassetpricing
```

- **Option 2: local installation**
1. Download the package

If you have **git** installed, run in the terminal
```bash
git clone https://github.com/mk0417/open-asset-pricing-download.git
```

If you do not have **git**, you can download the pakage by clicking
the green `Code` button on top of the page and then clicking `Download ZIP`.

2. Install on your local machine

Run in the terminal
```bash
pip install <local path to the package>
```

Or, navigate to the package directory first, then run in the terminal
```bash
pip install .
```

- **Optional example dependencies**

If you plan to run the example scripts and notebooks, install with extras:
```bash
pip install '.[examples]'
```

## Usage
Both Pandas and Polars dataframes are supported. You can choose the
one that fits your workflow.

### Import package
```python
import openassetpricing as oap

# List available release versions
oap.list_release()

# By default, it initializes the data source of most recent release
openap = oap.OpenAP()

# Specify the release version if you need vintage data, for example, 202408
openap = oap.OpenAP(202408)
```

### List available portfolios (various implementations)
You will see original portfolio names of Chen and Zimmermann and the corresponding download names.
```python
openap.list_port()
```

### Download list of predictors
```python
# Use Polars dataframe
df = openap.dl_signal_doc('polars')

# Use Pandas dataframe
df = openap.dl_signal_doc('pandas')
```

### Download portfolio returns
#### Download all predictors
```python
# Download OP portfolio returns in Polars dataframe
df = openap.dl_port('op', 'polars')

# Download equal-weighted decile portfolio returns in Pandas dataframe
df = openap.dl_port('deciles_ew', 'pandas')
```

#### Download specific predictors
```python
# Download BM portfolio returns based on NYSE stocks only in Polars dataframe
df = openap.dl_port('nyse', 'polars', ['BM'])
# Download BM and 12-month momentum value-weighted
# quintile portfolio returns in Polars dataframe
df = openap.dl_port('quintiles_vw', 'polars', ['BM', 'Mom12m'])

# Use Pandas dataframe
df = openap.dl_port('nyse', 'pandas', ['BM'])
df = openap.dl_port('quintiles_vw', 'pandas', ['BM', 'Mom12m'])
```

### Download firm characteristics
#### Download all firm characteristics
```python
# Use Polars dataframe
df = openap.dl_all_signals('polars')

# Use Pandas dataframe
df = openap.dl_all_signals('pandas')
```

#### Download specific firm characteristics
```python
# Use Polars dataframe
df = openap.dl_signal('polars', ['BM'])

# Use Pandas dataframe
df = openap.dl_signal('pandas', ['BM'])
```

### Note
- To download all signals, you need a WRDS account.
- The code has been tested with *Python 3.10.14*.

### Contacts
- Peng Li (pl750@bath.ac.uk)
- Andrew Chen (andrew.y.chen@frb.gov)
- Tom Zimmermann (tom.zimmermann@uni-koeln.de)
