Tools for analyzing financial timeseries of a single asset or a group of assets. Designed for daily or less frequent data.
Complete documentation is available at: https://captorab.github.io/openseries/
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()
