Tools for analyzing financial timeseries of a single asset or a group of assets. Designed for daily or less frequent data.
⚠️ Python Version Notice: Python 3.10 support is deprecated and will be removed, no earlier than 2025-12-01. Please upgrade to Python ≥3.11. See #340 (pinned) for details.
Complete documentation is available at: https://openseries.readthedocs.io
The documentation includes:
- Quick start guide
- API reference
- Tutorials and examples
- Installation instructions
pip install openseriesor:
conda install -c conda-forge openseriesfrom 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.set_new_label(lvl_zero="ICE BofAML MOVE Index")
_,_=series.plot_series()
