22 lines
628 B
Python
22 lines
628 B
Python
"""Idea91 ML-CV Hedge Studio (Minimal MVP).
|
|
|
|
This package provides a tiny, demonstrable MVP of the DSL primitives and
|
|
engine that the tests exercise. It is deliberately lightweight but designed to
|
|
be extended toward the described ML-driven cross-venue hedge synthesis engine.
|
|
"""
|
|
|
|
from .dsl import Asset, MarketSignal, RiskState, HedgePlanDelta, GraphOfContracts
|
|
from .engine import HedgeSynthesisEngine, Budget
|
|
from .adapters import PriceFeedAdapter
|
|
|
|
__all__ = [
|
|
"Asset",
|
|
"MarketSignal",
|
|
"RiskState",
|
|
"HedgePlanDelta",
|
|
"GraphOfContracts",
|
|
"HedgeSynthesisEngine",
|
|
"Budget",
|
|
"PriceFeedAdapter",
|
|
]
|