Coverage for src/jquantstats/_plots/_portfolio/__init__.py: 100%
3 statements
« prev ^ index » next coverage.py v7.15.3, created at 2026-08-06 04:52 +0000
« prev ^ index » next coverage.py v7.15.3, created at 2026-08-06 04:52 +0000
1"""Plotting utilities for portfolio analytics using Plotly.
3Renders common portfolio visuals — snapshots, lagged performance curves,
4smoothed-holdings curves, rolling risk metrics and lead/lag information ratio
5bar charts. Designed for notebook use.
6"""
8from __future__ import annotations
10from ._core import PortfolioPlots
12__all__ = ["PortfolioPlots"]