34 lines
1.1 KiB
Python
34 lines
1.1 KiB
Python
"""DeltaForge MVP: Real-Time Cross-Asset Strategy Synthesis (Skeleton)
|
|
|
|
This package provides a minimal, production-ready skeleton to bootstrap
|
|
DeltaForge MVP as described in the architectural notes. It includes a tiny
|
|
DSL (Asset, MarketSignal, StrategyDelta, PlanDelta), two starter adapters,
|
|
and a toy backtester/execution flow to demonstrate cross-venue delta-hedge
|
|
coordination.
|
|
"""
|
|
|
|
__all__ = [
|
|
"Asset",
|
|
"MarketSignal",
|
|
"StrategyDelta",
|
|
"PlanDelta",
|
|
"Curator",
|
|
"EquityFeedAdapter",
|
|
"OptionsFeedAdapter",
|
|
"ExecutionEngine",
|
|
"Backtester",
|
|
"RealTimeEngine",
|
|
]
|
|
|
|
from .dsl import Asset, MarketSignal, StrategyDelta, PlanDelta, LocalArbProblem, SharedSignals, DualVariables, PrivacyBudget, AuditLog, PolicyBlock, TimeMonoid
|
|
from .core import Curator
|
|
from .adapters.equity_feed import EquityFeedAdapter
|
|
from .adapters.options_feed import OptionsFeedAdapter
|
|
from .execution import ExecutionEngine
|
|
from .backtester import Backtester
|
|
from .rt_engine import RealTimeEngine
|
|
from .go_c_registry import GoCRegistry, GoCContract
|
|
|
|
# Public GoC registry exports for interoperability
|
|
__all__.extend(["GoCRegistry", "GoCContract"])
|