26 lines
686 B
Python
26 lines
686 B
Python
"""DeltaForge Skeletal MVP
|
|
|
|
A minimal, production-friendly Python package skeleton that implements a
|
|
canonical DSL surface and a toy but deterministic cross-venue workflow for
|
|
testing and integration with adapters.
|
|
"""
|
|
|
|
from .core import Asset, MarketSignal, StrategyDelta, PlanDelta
|
|
from .adapters.equity_feed import EquityFeedAdapter
|
|
from .adapters.options_feed import OptionsFeedAdapter
|
|
from .curator import Curator
|
|
from .execution import ExecutionEngine
|
|
from .backtester import Backtester
|
|
|
|
__all__ = [
|
|
"Asset",
|
|
"MarketSignal",
|
|
"StrategyDelta",
|
|
"PlanDelta",
|
|
"EquityFeedAdapter",
|
|
"OptionsFeedAdapter",
|
|
"Curator",
|
|
"ExecutionEngine",
|
|
"Backtester",
|
|
]
|