openseries 1.9.4__tar.gz → 1.9.6__tar.gz
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-1.9.4 → openseries-1.9.6}/PKG-INFO +4 -3
- {openseries-1.9.4 → openseries-1.9.6}/README.md +1 -1
- {openseries-1.9.4 → openseries-1.9.6}/openseries/_common_model.py +373 -451
- {openseries-1.9.4 → openseries-1.9.6}/openseries/datefixer.py +8 -6
- {openseries-1.9.4 → openseries-1.9.6}/openseries/frame.py +110 -93
- {openseries-1.9.4 → openseries-1.9.6}/openseries/owntypes.py +48 -47
- {openseries-1.9.4 → openseries-1.9.6}/openseries/plotly_layouts.json +1 -1
- {openseries-1.9.4 → openseries-1.9.6}/openseries/portfoliotools.py +10 -12
- {openseries-1.9.4 → openseries-1.9.6}/openseries/report.py +66 -61
- {openseries-1.9.4 → openseries-1.9.6}/openseries/series.py +51 -37
- {openseries-1.9.4 → openseries-1.9.6}/openseries/simulation.py +3 -3
- {openseries-1.9.4 → openseries-1.9.6}/pyproject.toml +13 -19
- {openseries-1.9.4 → openseries-1.9.6}/LICENSE.md +0 -0
- {openseries-1.9.4 → openseries-1.9.6}/openseries/__init__.py +0 -0
- {openseries-1.9.4 → openseries-1.9.6}/openseries/_risk.py +0 -0
- {openseries-1.9.4 → openseries-1.9.6}/openseries/load_plotly.py +0 -0
- {openseries-1.9.4 → openseries-1.9.6}/openseries/plotly_captor_logo.json +0 -0
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: openseries
|
3
|
-
Version: 1.9.
|
3
|
+
Version: 1.9.6
|
4
4
|
Summary: Tools for analyzing financial timeseries.
|
5
5
|
License: # BSD 3-Clause License
|
6
6
|
|
@@ -29,6 +29,7 @@ License: # BSD 3-Clause License
|
|
29
29
|
however caused and on any theory of liability, whether in contract, strict liability,
|
30
30
|
or tort (including negligence or otherwise) arising in any way out of the use of this
|
31
31
|
software, even if advised of the possibility of such damage.
|
32
|
+
License-File: LICENSE.md
|
32
33
|
Keywords: python,finance,fintech,data-science,timeseries,timeseries-data,timeseries-analysis,investment,investment-analysis,investing
|
33
34
|
Author: Martin Karrin
|
34
35
|
Author-email: martin.karrin@captor.se
|
@@ -119,7 +120,7 @@ _,_=series.plot_series()
|
|
119
120
|
|
120
121
|
### Sample output using the report_html() function:
|
121
122
|
|
122
|
-
<img src="https://raw.githubusercontent.com/CaptorAB/openseries/master/
|
123
|
+
<img src="https://raw.githubusercontent.com/CaptorAB/openseries/master/openseries_plot.png" alt="Two Assets Compared" width="1000" />
|
123
124
|
|
124
125
|
## Development Instructions
|
125
126
|
|
@@ -54,7 +54,7 @@ _,_=series.plot_series()
|
|
54
54
|
|
55
55
|
### Sample output using the report_html() function:
|
56
56
|
|
57
|
-
<img src="https://raw.githubusercontent.com/CaptorAB/openseries/master/
|
57
|
+
<img src="https://raw.githubusercontent.com/CaptorAB/openseries/master/openseries_plot.png" alt="Two Assets Compared" width="1000" />
|
58
58
|
|
59
59
|
## Development Instructions
|
60
60
|
|