Metadata-Version: 2.1
Name: transforms-fin
Version: 0.1.2
Summary: A set of Transforms meant for financial analysis to be used with the datacode package
Home-page: https://github.com/nickderobertis/transforms-fin
Author: Nick DeRobertis
Author-email: whoopnip@gmail.com
License: MIT
Project-URL: Code, https://github.com/nickderobertis/transforms-fin
Project-URL: Documentation, https://nickderobertis.github.io/transforms-fin
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Requires-Dist: datacode
Requires-Dist: pd-utils


[![](https://codecov.io/gh/nickderobertis/transforms-fin/branch/master/graph/badge.svg)](https://codecov.io/gh/nickderobertis/transforms-fin)

# transforms-fin

## Overview

A set of Transforms meant for financial analysis to be used with the datacode package

## Getting Started

Install `transforms_fin`:

```
pip install transforms_fin
```

A simple example:

```python
import transforms_fin  # transforms are automatically loaded upon import
import datacode as dc

a = dc.Variable('a', 'A')
vc = dc.VariableCollection(a)

# Portfolio transform
vc.a.port()

```

## Links

See the
[documentation here.](
https://nickderobertis.github.io/transforms-fin/
)

## Author

Created by Nick DeRobertis. MIT License.

