openseries 1.9.6__py3-none-any.whl → 2.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- openseries/__init__.py +1 -8
- openseries/_common_model.py +375 -224
- openseries/_risk.py +3 -10
- openseries/datefixer.py +9 -16
- openseries/frame.py +100 -117
- openseries/load_plotly.py +3 -10
- openseries/owntypes.py +3 -10
- openseries/portfoliotools.py +19 -41
- openseries/py.typed +0 -0
- openseries/report.py +6 -12
- openseries/series.py +36 -54
- openseries/simulation.py +104 -39
- openseries-2.0.0.dist-info/METADATA +126 -0
- openseries-2.0.0.dist-info/RECORD +18 -0
- {openseries-1.9.6.dist-info → openseries-2.0.0.dist-info}/WHEEL +1 -1
- openseries-1.9.6.dist-info/METADATA +0 -369
- openseries-1.9.6.dist-info/RECORD +0 -17
- {openseries-1.9.6.dist-info → openseries-2.0.0.dist-info}/licenses/LICENSE.md +0 -0
openseries/__init__.py
CHANGED
@@ -1,11 +1,4 @@
|
|
1
|
-
"""openseries.openseries.__init__.py.
|
2
|
-
|
3
|
-
Copyright (c) Captor Fund Management AB. This file is part of the openseries project.
|
4
|
-
|
5
|
-
Licensed under the BSD 3-Clause License. You may obtain a copy of the License at:
|
6
|
-
https://github.com/CaptorAB/openseries/blob/master/LICENSE.md
|
7
|
-
SPDX-License-Identifier: BSD-3-Clause
|
8
|
-
"""
|
1
|
+
"""openseries.openseries.__init__.py."""
|
9
2
|
|
10
3
|
from .datefixer import (
|
11
4
|
date_fix,
|