openseries 1.8.1__tar.gz → 1.8.3__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.8.1 → openseries-1.8.3}/PKG-INFO +7 -6
- {openseries-1.8.1 → openseries-1.8.3}/README.md +6 -5
- {openseries-1.8.1 → openseries-1.8.3}/openseries/_common_model.py +250 -77
- {openseries-1.8.1 → openseries-1.8.3}/openseries/_risk.py +2 -2
- {openseries-1.8.1 → openseries-1.8.3}/openseries/datefixer.py +10 -10
- {openseries-1.8.1 → openseries-1.8.3}/openseries/frame.py +38 -41
- {openseries-1.8.1 → openseries-1.8.3}/openseries/load_plotly.py +2 -2
- {openseries-1.8.1 → openseries-1.8.3}/openseries/owntypes.py +11 -2
- {openseries-1.8.1 → openseries-1.8.3}/openseries/plotly_layouts.json +4 -4
- {openseries-1.8.1 → openseries-1.8.3}/openseries/portfoliotools.py +14 -13
- {openseries-1.8.1 → openseries-1.8.3}/openseries/series.py +29 -27
- {openseries-1.8.1 → openseries-1.8.3}/openseries/simulation.py +10 -10
- {openseries-1.8.1 → openseries-1.8.3}/pyproject.toml +18 -14
- {openseries-1.8.1 → openseries-1.8.3}/LICENSE.md +0 -0
- {openseries-1.8.1 → openseries-1.8.3}/openseries/__init__.py +0 -0
- {openseries-1.8.1 → openseries-1.8.3}/openseries/plotly_captor_logo.json +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: openseries
|
3
|
-
Version: 1.8.
|
3
|
+
Version: 1.8.3
|
4
4
|
Summary: Tools for analyzing financial timeseries.
|
5
5
|
License: # BSD 3-Clause License
|
6
6
|
|
@@ -71,14 +71,14 @@ Description-Content-Type: text/markdown
|
|
71
71
|
|
72
72
|
[](https://pypi.org/project/openseries/)
|
73
73
|
[](https://anaconda.org/conda-forge/openseries)
|
74
|
-
|
75
|
-
[](https://nbviewer.org/github/karrmagadgeteer2/NoteBook/blob/master/openseriesnotebook.ipynb)
|
74
|
+

|
76
75
|
[](https://www.python.org/)
|
77
76
|
[](https://github.com/CaptorAB/openseries/actions/workflows/test.yml)
|
78
77
|
[](https://github.com/CaptorAB/openseries/actions/workflows/test.yml)
|
79
78
|
[](https://python-poetry.org/)
|
80
79
|
[](https://beta.ruff.rs/docs/)
|
81
|
-
[](https://github.com/CaptorAB/openseries/blob/master/LICENSE.md)
|
81
|
+
[](https://nbviewer.org/github/karrmagadgeteer2/NoteBook/blob/master/openseriesnotebook.ipynb)
|
82
82
|
|
83
83
|
This is a project with tools to analyze financial timeseries of a single
|
84
84
|
asset or a group of assets. It is solely made for daily or less frequent data.
|
@@ -330,8 +330,9 @@ make lint
|
|
330
330
|
| `value_to_diff` | `OpenTimeSeries`, `OpenFrame` | Converts a value series into a series of differences. |
|
331
331
|
| `value_to_log` | `OpenTimeSeries`, `OpenFrame` | Converts a value series into a logarithmic return series. |
|
332
332
|
| `value_ret_calendar_period` | `OpenTimeSeries`, `OpenFrame` | Returns the series simple return for a specific calendar period. |
|
333
|
-
| `plot_series` | `OpenTimeSeries`, `OpenFrame` | Opens a HTML [Plotly Scatter](https://plotly.com/python/line-and-scatter/) plot of the
|
334
|
-
| `plot_bars` | `OpenTimeSeries`, `OpenFrame` | Opens a HTML [Plotly Bar](https://plotly.com/python/bar-charts/) plot of the
|
333
|
+
| `plot_series` | `OpenTimeSeries`, `OpenFrame` | Opens a HTML [Plotly Scatter](https://plotly.com/python/line-and-scatter/) plot of the serie(s) in a browser window. |
|
334
|
+
| `plot_bars` | `OpenTimeSeries`, `OpenFrame` | Opens a HTML [Plotly Bar](https://plotly.com/python/bar-charts/) plot of the serie(s) in a browser window. |
|
335
|
+
| `plot_histogram` | `OpenTimeSeries`, `OpenFrame` | Opens a HTML [Plotly Histogram](https://plotly.com/python/histograms/) plot of the serie(s) in a browser window. |
|
335
336
|
| `to_drawdown_series` | `OpenTimeSeries`, `OpenFrame` | Converts the series into drawdown series. |
|
336
337
|
| `rolling_return` | `OpenTimeSeries`, `OpenFrame` | Returns a pandas.DataFrame with rolling returns. |
|
337
338
|
| `rolling_vol` | `OpenTimeSeries`, `OpenFrame` | Returns a pandas.DataFrame with rolling volatilities. |
|
@@ -6,14 +6,14 @@
|
|
6
6
|
|
7
7
|
[](https://pypi.org/project/openseries/)
|
8
8
|
[](https://anaconda.org/conda-forge/openseries)
|
9
|
-
|
10
|
-
[](https://nbviewer.org/github/karrmagadgeteer2/NoteBook/blob/master/openseriesnotebook.ipynb)
|
9
|
+

|
11
10
|
[](https://www.python.org/)
|
12
11
|
[](https://github.com/CaptorAB/openseries/actions/workflows/test.yml)
|
13
12
|
[](https://github.com/CaptorAB/openseries/actions/workflows/test.yml)
|
14
13
|
[](https://python-poetry.org/)
|
15
14
|
[](https://beta.ruff.rs/docs/)
|
16
|
-
[](https://github.com/CaptorAB/openseries/blob/master/LICENSE.md)
|
16
|
+
[](https://nbviewer.org/github/karrmagadgeteer2/NoteBook/blob/master/openseriesnotebook.ipynb)
|
17
17
|
|
18
18
|
This is a project with tools to analyze financial timeseries of a single
|
19
19
|
asset or a group of assets. It is solely made for daily or less frequent data.
|
@@ -265,8 +265,9 @@ make lint
|
|
265
265
|
| `value_to_diff` | `OpenTimeSeries`, `OpenFrame` | Converts a value series into a series of differences. |
|
266
266
|
| `value_to_log` | `OpenTimeSeries`, `OpenFrame` | Converts a value series into a logarithmic return series. |
|
267
267
|
| `value_ret_calendar_period` | `OpenTimeSeries`, `OpenFrame` | Returns the series simple return for a specific calendar period. |
|
268
|
-
| `plot_series` | `OpenTimeSeries`, `OpenFrame` | Opens a HTML [Plotly Scatter](https://plotly.com/python/line-and-scatter/) plot of the
|
269
|
-
| `plot_bars` | `OpenTimeSeries`, `OpenFrame` | Opens a HTML [Plotly Bar](https://plotly.com/python/bar-charts/) plot of the
|
268
|
+
| `plot_series` | `OpenTimeSeries`, `OpenFrame` | Opens a HTML [Plotly Scatter](https://plotly.com/python/line-and-scatter/) plot of the serie(s) in a browser window. |
|
269
|
+
| `plot_bars` | `OpenTimeSeries`, `OpenFrame` | Opens a HTML [Plotly Bar](https://plotly.com/python/bar-charts/) plot of the serie(s) in a browser window. |
|
270
|
+
| `plot_histogram` | `OpenTimeSeries`, `OpenFrame` | Opens a HTML [Plotly Histogram](https://plotly.com/python/histograms/) plot of the serie(s) in a browser window. |
|
270
271
|
| `to_drawdown_series` | `OpenTimeSeries`, `OpenFrame` | Converts the series into drawdown series. |
|
271
272
|
| `rolling_return` | `OpenTimeSeries`, `OpenFrame` | Returns a pandas.DataFrame with rolling returns. |
|
272
273
|
| `rolling_vol` | `OpenTimeSeries`, `OpenFrame` | Returns a pandas.DataFrame with rolling volatilities. |
|