""" Chart Layers Package This package contains the modular chart layer system for rendering different chart components including candlesticks, indicators, and signals. """ # Package metadata __version__ = "0.1.0" __package_name__ = "layers" # Layers will be imported once they are created # from .base import BaseCandlestickLayer # from .indicators import IndicatorLayer # from .subplots import SubplotManager # from .signals import SignalLayer # Public exports (will be populated as layers are implemented) __all__ = [ # "BaseCandlestickLayer", # "IndicatorLayer", # "SubplotManager", # "SignalLayer" ]