Systematic research framework for tactical credit strategies
Project description
Aponyx
A modular Python framework for developing and backtesting systematic credit strategies.
Aponyx provides a type-safe, reproducible research environment for tactical fixed-income strategies. Built for investment professionals who need clean separation between strategy logic, data infrastructure, and backtesting workflows.
Key Features
- Type-safe data loading with schema validation (Parquet, CSV, Bloomberg Terminal)
- Modular signal framework with composable transformations and registry management
- Deterministic backtesting with transaction cost modeling and comprehensive metrics
- Interactive visualization with Plotly charts (equity curves, signals, drawdown)
- Production-ready persistence with metadata tracking and versioning
- Strategy governance with centralized registry and configuration management
Installation
From PyPI (Recommended)
pip install aponyx
Optional dependencies:
# Visualization (Plotly, Streamlit)
pip install aponyx[viz]
# Bloomberg Terminal support (requires manual blpapi install)
pip install aponyx[bloomberg]
# Development tools
pip install aponyx[dev]
From Source
Requires Python 3.12 and uv:
git clone https://github.com/stabilefrisur/aponyx.git
cd aponyx
uv sync # Install dependencies
uv sync --extra viz # Include visualization
Bloomberg Terminal Setup (Optional)
Note: Bloomberg data loading requires an active Terminal session and manual
blpapiinstallation.
- Download
blpapifrom Bloomberg's API Library - Install:
pip install path/to/blpapi-*.whl - Install Bloomberg extra:
pip install aponyx[bloomberg]
File-based data loading (FileSource) works without Bloomberg dependencies.
Quick Start
from aponyx.data import fetch_cdx, fetch_etf, FileSource
from aponyx.models import compute_cdx_etf_basis, SignalConfig
from aponyx.backtest import run_backtest, BacktestConfig
from aponyx.evaluation.performance import compute_all_metrics
# Load validated market data
cdx_df = fetch_cdx(FileSource("data/raw/cdx_data.parquet"), security="cdx_ig_5y")
etf_df = fetch_etf(FileSource("data/raw/etf_data.parquet"), security="hyg")
# Generate signal with configuration
signal_config = SignalConfig(lookback=20, min_periods=10)
signal = compute_cdx_etf_basis(cdx_df, etf_df, signal_config)
# Evaluate signal-product suitability (optional pre-backtest gate)
from aponyx.evaluation import evaluate_signal_suitability, SuitabilityConfig
suitability_config = SuitabilityConfig(rolling_window=252) # ~1 year daily data
result = evaluate_signal_suitability(signal, cdx_df["spread"], suitability_config)
if result.decision != "PASS":
print(f"Signal evaluation: {result.decision} (score: {result.composite_score:.2f})")
print(f"Stability: {result.sign_consistency_ratio:.1%} sign consistency, CV={result.beta_cv:.3f}")
# Optionally skip backtest for low-quality signals
# Run backtest with transaction costs
backtest_config = BacktestConfig(
entry_threshold=1.5,
exit_threshold=0.75,
transaction_cost_bps=1.0
)
results = run_backtest(signal, cdx_df["spread"], backtest_config)
# Compute comprehensive performance metrics
metrics = compute_all_metrics(results.pnl, results.positions)
# Analyze results
print(f"Sharpe Ratio: {metrics.sharpe_ratio:.2f}")
print(f"Max Drawdown: ${metrics.max_drawdown:,.0f}")
print(f"Hit Rate: {metrics.hit_rate:.2%}")
Bloomberg Terminal alternative:
from aponyx.data import BloombergSource
source = BloombergSource()
cdx_df = fetch_cdx(source, security="cdx_ig_5y")
Architecture
Aponyx follows a layered architecture with clean separation of concerns:
| Layer | Purpose | Key Modules |
|---|---|---|
| Data | Load, validate, transform market data | fetch_cdx, fetch_vix, fetch_etf, FileSource, BloombergSource |
| Models | Generate signals for independent evaluation | compute_cdx_etf_basis, compute_cdx_vix_gap, SignalRegistry |
| Evaluation | Pre-backtest screening (rolling window stability) and post-backtest analysis | evaluate_signal_suitability, analyze_backtest_performance, PerformanceRegistry |
| Backtest | Simulate execution and compute metrics | run_backtest, BacktestConfig, StrategyRegistry |
| Visualization | Interactive charts and dashboards | plot_equity_curve, plot_signal, plot_drawdown |
| Persistence | Save/load data with metadata registry | save_parquet, load_parquet, DataRegistry |
Research Workflow
Raw Data (Parquet/CSV/Bloomberg)
↓
Data Layer (load, validate, transform)
↓
Models Layer (signal computation)
↓
Evaluation Layer (signal-product suitability)
├─ PASS → Backtest Layer (simulation, metrics)
│ ↓
│ Evaluation Layer (performance analysis)
│ ↓
│ Visualization Layer (charts)
│ ↓
│ Persistence Layer (results)
│
└─ FAIL → Archive (no backtest)
Research Notebooks
Complete workflow notebooks are included in the package for end-to-end research workflows.
Access installed notebooks:
# Locate notebook directory
from pathlib import Path
import aponyx
notebooks_dir = Path(aponyx.__file__).parent / "notebooks"
print(notebooks_dir)
Workflow notebooks:
| Notebook | Description |
|---|---|
01_data_download.ipynb |
Download market data from Bloomberg Terminal |
02_signal_computation.ipynb |
Generate signals using SignalRegistry |
03_suitability_evaluation.ipynb |
Pre-backtest signal screening and evaluation |
04_backtest_execution.ipynb |
Execute backtests and save raw results |
05_performance_analysis.ipynb |
Comprehensive post-backtest performance analysis |
06_single_signal_template.ipynb |
End-to-end single-signal research template |
Usage:
# Copy notebooks to your workspace
pip install aponyx[viz] # Install with notebook dependencies
python -c "from pathlib import Path; import aponyx, shutil; src = Path(aponyx.__file__).parent / 'notebooks'; shutil.copytree(src, 'notebooks')"
jupyter notebook notebooks/
Notebooks demonstrate the complete systematic research workflow from data acquisition through performance analysis.
Documentation
Documentation is included with the package and available after installation:
# Access docs programmatically
from aponyx.docs import get_docs_dir
docs_path = get_docs_dir()
print(docs_path) # Path to installed documentation
Available documentation:
| Document | Description |
|---|---|
python_guidelines.md |
Code standards and best practices |
cdx_overlay_strategy.md |
Investment thesis and pilot implementation |
signal_registry_usage.md |
Signal management workflow |
signal_suitability_evaluation.md |
Pre-backtest evaluation framework |
performance_evaluation_design.md |
Post-backtest analysis framework |
visualization_design.md |
Chart architecture and patterns |
logging_design.md |
Logging conventions and metadata |
caching_design.md |
Cache layer architecture |
adding_data_providers.md |
Provider extension guide |
governance_design.md |
Registry, catalog, and config patterns |
documentation_structure.md |
Documentation organization principles |
project_setup_process.md |
Project setup and installation |
During development, docs are also available on GitHub:
What's Included
Implemented
- ✅ Type-safe data loading with schema validation (Parquet, CSV, Bloomberg)
- ✅ Modular signal framework with registry and catalog management
- ✅ Deterministic backtesting with transaction costs and comprehensive metrics
- ✅ Interactive Plotly visualizations (equity curves, signals, drawdown)
- ✅ Strategy governance with centralized registry and versioning
- ✅ Metadata tracking and reproducibility controls
- ✅ Comprehensive test suite with >90% coverage
Pilot Signals
Three signals for CDX overlay strategies:
- CDX-ETF Basis - Flow-driven mispricing from cash-derivative basis
- CDX-VIX Gap - Cross-asset risk sentiment divergence
- Spread Momentum - Short-term continuation in credit spreads
Development
Running Tests
pytest # All tests
pytest --cov=aponyx # With coverage
pytest tests/models/ # Specific module
Code Quality
black src/ tests/ # Format code
ruff check src/ tests/ # Lint
mypy src/ # Type check
All tools are configured in pyproject.toml with project-specific settings.
Design Philosophy
Core Principles
- Modularity - Clean separation between data, models, backtest, and infrastructure
- Reproducibility - Deterministic outputs with seed control and metadata logging
- Type Safety - Strict type hints and runtime validation throughout
- Simplicity - Prefer functions over classes, explicit over implicit
- Transparency - Clear separation between strategy logic and execution
Signal Convention
All signals follow a consistent sign convention for interpretability:
- Positive values → Long credit risk (buy CDX = sell protection)
- Negative values → Short credit risk (sell CDX = buy protection)
This ensures clarity when evaluating signals independently or combining them in future research.
Requirements
- Python 3.12 (no backward compatibility with 3.11 or earlier)
- Modern type syntax (
str | None, notOptional[str]) - Optional: Bloomberg Terminal with
blpapifor live data
Contributing
Contributions welcome! This is a research framework under active development.
- Code standards: See Python Guidelines (or
from aponyx.docs import get_docs_dirafter install) - Testing: All new features require unit tests
- Documentation: NumPy-style docstrings required
License
MIT License - see LICENSE for details.
Links
- PyPI: https://pypi.org/project/aponyx/
- Repository: https://github.com/stabilefrisur/aponyx
- Issues: https://github.com/stabilefrisur/aponyx/issues
- Changelog: https://github.com/stabilefrisur/aponyx/blob/master/CHANGELOG.md
Maintained by stabilefrisur Version: 0.1.8 Last Updated: November 13, 2025
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aponyx-0.1.8.tar.gz.
File metadata
- Download URL: aponyx-0.1.8.tar.gz
- Upload date:
- Size: 418.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f51abb48c7e6313926cec5137ed07f6b0d8c73a49a25cf0a47842e838dee7242
|
|
| MD5 |
25495c7aa373bac7f640c97e20696154
|
|
| BLAKE2b-256 |
6d68425703b20a17e0f1fe274d82d09afcd8c8efed9e8320db92b6bb0288b0fd
|
File details
Details for the file aponyx-0.1.8-py3-none-any.whl.
File metadata
- Download URL: aponyx-0.1.8-py3-none-any.whl
- Upload date:
- Size: 460.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
77710d504b36fb3e26d9dd4b6bc7231c032f405528c74b24d7de529d0b60c14e
|
|
| MD5 |
ed4a1bfeb3523b63097de267cead30e0
|
|
| BLAKE2b-256 |
7ef022d8eb4cc85458fbb2ac5c615f675ae05da2d522a2271da277e8006fa834
|