Skip to main content

Proteus Optimisation Package (POP): Domain-agnostic stochastic optimization engine for PAL variables

Project description

POP Logo

Proteus Optimisation Package (POP)

Documentation Status


Domain-agnostic stochastic optimization engine for PAL (Proteus Actuarial Library) variables.

Features

  • 🎯 Metric-Centric Design: Unified framework for objectives and constraints
  • 📊 Multiple Metric Types: Mean, Std, SpreadVaR, plus composite metrics (Ratio, Product, Sum, Difference)
  • 🔗 Composite Metrics: Build complex metrics like Sharpe ratios, risk-adjusted returns
  • 🎲 Dual Data Support: StochasticScalar (aggregated) and FreqSevSims (frequency-severity)
  • ⚖️ Flexible Constraints: Portfolio-level and occurrence-level constraints
  • 📈 Efficient Frontiers: Parallel constraint variation for risk-return tradeoff analysis
  • ✅ Type-Safe API: Pydantic models with comprehensive validation

Installation

From PyPI

pip install proteusllp-optimisation-package

From Local Source (Development)

pip install -e /proteus-optimisation-package

Quick Start

from pop import (
    ObjectiveSpec, OptimizationInput, SimpleConstraint,
    MeanMetric, StdMetric, optimize
)
from pal.variables import ProteusVariable
from pal import StochasticScalar

# Create PAL variable with return simulations
returns = ProteusVariable("item", {
    "stock_a": StochasticScalar([0.10, 0.12, 0.08]),
    "stock_b": StochasticScalar([0.15, 0.18, 0.12])
})

# Define objective: maximize expected return
objective = ObjectiveSpec(
    objective_value=returns,
    metric=MeanMetric(),
    direction="maximize"
)

# Add risk constraint: limit portfolio std dev
risk_constraint = SimpleConstraint(
    constraint_value=returns,
    metric=StdMetric(),
    threshold=0.15,
    direction="cap",
    name="max_risk"
)

# Create optimization problem
opt_input = OptimizationInput(
    item_ids=["stock_a", "stock_b"],
    current_shares={"stock_a": 100.0, "stock_b": 100.0},
    objective=objective,
    simple_constraints=[risk_constraint]
)

# Run optimization
result = optimize(opt_input.preprocess())
print(f"Optimal shares: {result.optimal_shares}")
print(f"Expected return: {result.objective_value:.4f}")

Documentation

Full documentation is available at proteusllp-optimisation-package.readthedocs.io.

Requirements

  • Python 3.13+
  • PAL (Proteus Analytics Library) >=0.2.8
  • NumPy >=2.2
  • SciPy >=1.15
  • Pydantic >=2.0
  • cvxopt

Development

Setup

# Clone the repository
git clone https://github.com/ProteusLLP/proteusllp-optimisation-package.git
cd proteusllp-optimisation-package

# Open in VS Code - will prompt to reopen in devcontainer
code .  # Runs 'pdm install' automatically

# Or install locally with PDM
pdm install

Running Checks

# Run tests
pytest tests/ -v

# Run static analysis (lint, format, security, deadcode)
make static-analysis

# Run typecheck separately (has known issues with PAL's dynamic types)
make typecheck

Note on Type Checking: Pyright type checking is temporarily excluded from CI due to PAL's dynamic typing patterns. PAL adds attributes like .occurrence, .sim_index, and .n_sims at runtime, which pyright cannot fully infer. All tests pass, confirming functional correctness.

License

MIT License - see LICENSE file for details.

Contributing

Contributions welcome! Please see CONTRIBUTING.md for guidelines.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

proteusllp_optimisation_package-0.1.2.tar.gz (60.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file proteusllp_optimisation_package-0.1.2.tar.gz.

File metadata

File hashes

Hashes for proteusllp_optimisation_package-0.1.2.tar.gz
Algorithm Hash digest
SHA256 8ffc22ad04397770e6936b80377857fd926073ee157b4fcfbafba3e2adb89d83
MD5 7af4b6c4f94cdecb3b85f6b92faac556
BLAKE2b-256 36e800ddb3c9cd5363e2845bdb4cdd5505a0f9014598dfdf0122dbfaa53e9b2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for proteusllp_optimisation_package-0.1.2.tar.gz:

Publisher: ci.yaml on ProteusLLP/proteusllp-optimisation-package

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file proteusllp_optimisation_package-0.1.2-py3-none-any.whl.

File metadata

File hashes

Hashes for proteusllp_optimisation_package-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 2f86f95dfc8c24a6fa05264fc2cbadbb65cc94d4e38fb920ed12ce083878438c
MD5 5d9909b78667731dcb2d174c4a7251f4
BLAKE2b-256 a3532d5e117afa44638d92f5562182ba658723d9b7dae42bac9a6460023c725d

See more details on using hashes here.

Provenance

The following attestation bundles were made for proteusllp_optimisation_package-0.1.2-py3-none-any.whl:

Publisher: ci.yaml on ProteusLLP/proteusllp-optimisation-package

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page