"""
Modular live trading platform for Interactive Brokers.

Strategies plug in via ``LiveStrategy``; the orchestrator shares one IB session,
a portfolio snapshot, and centralized risk gates across all books.
"""

from RenTech.live.protocols import LiveStrategy, PortfolioSnapshot, StrategyContext

__all__ = [
    "LiveStrategy",
    "PortfolioSnapshot",
    "StrategyContext",
]
