CHANGELOG.md
LICENSE
MANIFEST.in
README.md
pyproject.toml
src/quantbt/__init__.py
src/quantbt/backtester.py
src/quantbt/endpoint.py
src/quantbt/engines.py
src/quantbt/errors.py
src/quantbt/portfolio.py
src/quantbt/py.typed
src/quantbt/walkforward.py
src/quantbt/adapters/__init__.py
src/quantbt/adapters/nautilus/__init__.py
src/quantbt/adapters/nautilus/_dependency.py
src/quantbt/adapters/nautilus/backend.py
src/quantbt/adapters/nautilus/instruments.py
src/quantbt/adapters/nautilus/options.py
src/quantbt/adapters/nautilus/reports.py
src/quantbt/api/__init__.py
src/quantbt/api/event_driven.py
src/quantbt/backends/__init__.py
src/quantbt/backends/_native_event_rust.py
src/quantbt/backends/native_event.py
src/quantbt/backends/native_option.py
src/quantbt/backends/native_portfolio.py
src/quantbt/backends/native_portfolio_package.py
src/quantbt/backends/native_strategy_ir.py
src/quantbt/backends/native_vectorized.py
src/quantbt/benchmarks/__init__.py
src/quantbt/benchmarks/compare_phase9_parity.py
src/quantbt/benchmarks/gamma_scalping_backtestsample.py
src/quantbt/benchmarks/profile_phase7.py
src/quantbt/benchmarks/run_arbitrage_phase_e.py
src/quantbt/benchmarks/run_optimization_overhead.py
src/quantbt/benchmarks/run_options_engine.py
src/quantbt/benchmarks/run_pct_equity_nautilus_smoke.py
src/quantbt/benchmarks/run_phase12_arbitrage_cert.py
src/quantbt/benchmarks/run_phase12_benchmark_nautilus_cert.py
src/quantbt/benchmarks/run_phase13_portfolio_report.py
src/quantbt/benchmarks/run_phase13_wfo_cache.py
src/quantbt/benchmarks/run_phase14_service_loop.py
src/quantbt/benchmarks/run_phase15a_nautilus_certification.py
src/quantbt/benchmarks/run_phase15b_synthetic_depth.py
src/quantbt/benchmarks/run_phase16_performance_debt.py
src/quantbt/benchmarks/run_phase30e_reactive_runner.py
src/quantbt/benchmarks/run_phase31_intrabar.py
src/quantbt/benchmarks/run_phase34a_native_event_memory.py
src/quantbt/benchmarks/run_phase34b_native_event_prepared_score.py
src/quantbt/benchmarks/run_phase34c_native_event_single_pass.py
src/quantbt/benchmarks/run_phase49b_wfo_performance.py
src/quantbt/benchmarks/run_phase7.py
src/quantbt/benchmarks/run_portfolio_real_parity.py
src/quantbt/core/__init__.py
src/quantbt/core/accounting_contracts.py
src/quantbt/core/arbitrage.py
src/quantbt/core/basket.py
src/quantbt/core/certification.py
src/quantbt/core/constraints.py
src/quantbt/core/engine.py
src/quantbt/core/event.py
src/quantbt/core/event_contracts.py
src/quantbt/core/execution_contract.py
src/quantbt/core/execution_depth.py
src/quantbt/core/execution_trace.py
src/quantbt/core/generated_native_event_contracts.py
src/quantbt/core/generated_product_contracts.py
src/quantbt/core/instrument_contracts.py
src/quantbt/core/intrabar_kernel.py
src/quantbt/core/intrabar_reference.py
src/quantbt/core/intrabar_session.py
src/quantbt/core/market_tape.py
src/quantbt/core/native_event_capabilities.py
src/quantbt/core/native_event_parity.py
src/quantbt/core/native_event_promotion.py
src/quantbt/core/order_compiler.py
src/quantbt/core/orders.py
src/quantbt/core/package_execution_contracts.py
src/quantbt/core/portfolio.py
src/quantbt/core/portfolio_execution_contracts.py
src/quantbt/core/preprocessor.py
src/quantbt/core/product_contracts.py
src/quantbt/core/reactive.py
src/quantbt/core/results.py
src/quantbt/core/schema.py
src/quantbt/core/scopes.py
src/quantbt/core/structured_orders.py
src/quantbt/core/types.py
src/quantbt/core/vectorized.py
src/quantbt/engine_spi/__init__.py
src/quantbt/engine_spi/errors.py
src/quantbt/engine_spi/native_event.py
src/quantbt/engine_spi/protocol.py
src/quantbt/engine_spi/registry.py
src/quantbt/metrics/__init__.py
src/quantbt/metrics/options_analytics.py
src/quantbt/metrics/performance.py
src/quantbt/optimization/__init__.py
src/quantbt/optimization/callbacks.py
src/quantbt/optimization/candidate_selection.py
src/quantbt/optimization/config.py
src/quantbt/optimization/constraints.py
src/quantbt/optimization/evaluator.py
src/quantbt/optimization/multiseed.py
src/quantbt/optimization/objectives.py
src/quantbt/optimization/optimizer.py
src/quantbt/optimization/result.py
src/quantbt/optimization/samplers.py
src/quantbt/optimization/space.py
src/quantbt/optimization/evaluators/__init__.py
src/quantbt/optimization/evaluators/arbitrage.py
src/quantbt/optimization/evaluators/generic.py
src/quantbt/optimization/evaluators/grid_dca.py
src/quantbt/optimization/evaluators/intrabar.py
src/quantbt/optimization/evaluators/native_event.py
src/quantbt/optimization/evaluators/options.py
src/quantbt/optimization/evaluators/portfolio.py
src/quantbt/optimization/evaluators/signal.py
src/quantbt/options/__init__.py
src/quantbt/options/cache.py
src/quantbt/options/conventions.py
src/quantbt/options/data.py
src/quantbt/options/execution.py
src/quantbt/options/fees.py
src/quantbt/options/greeks.py
src/quantbt/options/hedging.py
src/quantbt/options/iv.py
src/quantbt/options/ledger.py
src/quantbt/options/lifecycle.py
src/quantbt/options/margin.py
src/quantbt/options/packages.py
src/quantbt/options/pricing.py
src/quantbt/options/schema.py
src/quantbt/options/selectors.py
src/quantbt/options/strategy.py
src/quantbt/options/surface.py
src/quantbt/options/tape.py
src/quantbt/options/templates/__init__.py
src/quantbt/options/templates/packages.py
src/quantbt/planning/__init__.py
src/quantbt/planning/capabilities.py
src/quantbt/planning/fingerprints.py
src/quantbt/planning/models.py
src/quantbt/planning/output.py
src/quantbt/planning/resolve.py
src/quantbt/preparation/__init__.py
src/quantbt/preparation/cache.py
src/quantbt/preparation/models.py
src/quantbt/preparation/native_event.py
src/quantbt/preparation/native_execution.py
src/quantbt/reporting/__init__.py
src/quantbt/reporting/arbitrage_audit.py
src/quantbt/reporting/nautilus_bundle.py
src/quantbt/reporting/nautilus_certification.py
src/quantbt/reporting/nautilus_diagnostics.py
src/quantbt/reporting/parity.py
src/quantbt/reporting/portfolio_audit.py
src/quantbt/reporting/portfolio_nautilus.py
src/quantbt/results/__init__.py
src/quantbt/results/raw.py
src/quantbt/sizing/__init__.py
src/quantbt/sizing/fast.py
src/quantbt/sizing/modes.py
src/quantbt/strategies/__init__.py
src/quantbt/strategies/commands.py
src/quantbt/strategies/context.py
src/quantbt/strategies/driver.py
src/quantbt/strategies/native_ir.py
src/quantbt/strategies/requirements.py
src/quantbt/viz/__init__.py
src/quantbt/viz/plots.py
src/quantbt/viz/themes.py
src/quantbt_engine.egg-info/PKG-INFO
src/quantbt_engine.egg-info/SOURCES.txt
src/quantbt_engine.egg-info/dependency_links.txt
src/quantbt_engine.egg-info/requires.txt
src/quantbt_engine.egg-info/top_level.txt
tests/test_endpoint.py
tests/test_metrics_intraday_scope.py
tests/test_optimization_core.py
tests/test_optimization_evaluators.py
tests/test_optimization_integration.py
tests/test_optimization_phase33b.py
tests/test_optimization_samplers.py
tests/test_pct_equity_nautilus_smoke.py
tests/test_phase0_baseline.py
tests/test_phase11_native_portfolio_backend.py
tests/test_phase11_native_portfolio_full_surface.py
tests/test_phase11_portfolio_engine_spec.py
tests/test_phase11_portfolio_institutional_scenarios.py
tests/test_phase11_portfolio_nautilus_validation.py
tests/test_phase11_portfolio_real_parity_script.py
tests/test_phase12_arbitrage_certification.py
tests/test_phase12_benchmark_nautilus_cert.py
tests/test_phase13_arbitrage_certification_cleanup.py
tests/test_phase13_portfolio_report_parity.py
tests/test_phase14_service_loop_benchmark.py
tests/test_phase14c_prepared_report_levels.py
tests/test_phase15a_nautilus_certification.py
tests/test_phase15b_synthetic_depth.py
tests/test_phase16_prepared_service_context.py
tests/test_phase1_schema.py
tests/test_phase2_native_vectorized.py
tests/test_phase30a_native_event_lifecycle_contract.py
tests/test_phase30b_native_event_lifecycle_kernel.py
tests/test_phase30c_native_event_endpoint_lifecycle.py
tests/test_phase30d_native_event_reactive_runner.py
tests/test_phase30e_native_event_incremental_runner.py
tests/test_phase31_merge_blockers.py
tests/test_phase31a_execution_correctness_contract.py
tests/test_phase31b_market_tape_intrabar_oracle.py
tests/test_phase31c_intrabar_kernel.py
tests/test_phase31d_certification.py
tests/test_phase31h_intrabar_session_reference.py
tests/test_phase34a_native_event_artifacts.py
tests/test_phase34b_native_event_prepared_score.py
tests/test_phase34c_native_event_single_pass.py
tests/test_phase3_native_event.py
tests/test_phase42_packaging_layout.py
tests/test_phase42c_ci_release.py
tests/test_phase45a_source_tree_sync.py
tests/test_phase45d_native_event_zero_object.py
tests/test_phase46a_correctness_certification.py
tests/test_phase46b_score_rss.py
tests/test_phase46c_import_graph.py
tests/test_phase46f_packaging_release.py
tests/test_phase47a_grid_adapter.py
tests/test_phase47c_grid_parity.py
tests/test_phase47d_grid_optimizer.py
tests/test_phase48a_release_surfaces.py
tests/test_phase48b_release_hygiene.py
tests/test_phase48c_event_driven_facade.py
tests/test_phase48f_release_gate.py
tests/test_phase49a_walkforward_schedules.py
tests/test_phase49b_wfo_performance.py
tests/test_phase4_basket.py
tests/test_phase50_nested_mode1_causal.py
tests/test_phase5_1_nautilus_report_bundle.py
tests/test_phase5_3_arbitrage_audit.py
tests/test_phase5_3_institutional_simulations.py
tests/test_phase5_3_portfolio_audit.py
tests/test_phase5_4_debt_domain_validation.py
tests/test_phase5_4_endpoint_depth.py
tests/test_phase5_4_nautilus_depth.py
tests/test_phase5_nautilus_adapter.py
tests/test_phase6_public_api.py
tests/test_phase7_benchmark_suite.py
tests/test_phase8_arbitrage_phase_a.py
tests/test_phase8_arbitrage_phase_b.py
tests/test_phase8_arbitrage_phase_c.py
tests/test_phase8_arbitrage_phase_d.py
tests/test_phase8_arbitrage_phase_e.py
tests/test_phase8_arbitrage_phase_f.py
tests/test_phase8_arbitrage_phase_g.py
tests/test_phase8_arbitrage_phase_h.py
tests/test_phase9_performance_parity.py
tests/test_pre48e_native_event_fast_paths.py
tests/test_real.py
tests/test_real_endpoints.py
tests/test_shared_quantity_constraints.py
tests/test_walkforward_phase1.py