Tools to analyze financial timeseries of single assets or portfolios. It is made for daily or less frequent data.
Last updated Jul 5, 2026
32
Stars
4
Forks
0
Issues
0
Stars/day
Attention Score
69
Topics
Language breakdown
Python 98.9%
PowerShell 0.8%
Makefile 0.2%
Shell 0.1%
▸ Files
click to expand
README
openseries
Tools for analyzing financial timeseries of a single asset or a group of assets. Designed for daily or less frequent data.
Documentation
Complete documentation is available at: https://captorab.github.io/openseries/
The documentation includes:
- Quick start guide
- API reference
- Tutorials and examples
- Installation instructions
Installation
pip install openseries
or:
conda install -c conda-forge openseries
Quick Start
from openseries import OpenTimeSeries
import yfinance as yf
move=yf.Ticker(ticker="^MOVE") history=move.history(period="max") series=OpenTimeSeries.from_df(dframe=history.loc[:, "Close"]) =series.setnewlabel(lvlzero="ICE BofAML MOVE Index") ,=series.plot_series()
Sample output using the report_html() function

🔗 More in this category
