7 lines
303 B
Python
7 lines
303 B
Python
"""DeltaForge MVP package init.
|
|
Expose lightweight APIs for a tiny cross-venue hedging engine scaffold.
|
|
"""
|
|
|
|
from .core import StrategyDelta, Asset, MarketSignal, PlanDelta # re-export for convenience
|
|
from .execution import ExecutionRouter # lightweight router for multi-venue dispatch (experimental)
|