Metadata-Version: 2.4
Name: finance_core
Version: 0.1.1
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
License-File: LICENSE
Requires-Python: >=3.8
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

# Finance core

```python
from finance_core import TimeSeries

index = [1, 2, 3, 4, 5]
values = [10.0, 12.0, 14.0, 16.0, 18.0]

ts = TimeSeries(
    index=index,
    values=values
)

print(ts.sma(3))
>> [None, None, 12.0, 14.0, 16.0]
```
