This commit is contained in:
Dobromir Popov
2025-08-04 17:40:30 +03:00
parent de77b0afa8
commit 8ee9b7a90c
7 changed files with 1468 additions and 14 deletions

View File

@ -0,0 +1,15 @@
"""
Data aggregation components for the COBY system.
"""
from .aggregation_engine import StandardAggregationEngine
from .price_bucketer import PriceBucketer
from .heatmap_generator import HeatmapGenerator
from .cross_exchange_aggregator import CrossExchangeAggregator
__all__ = [
'StandardAggregationEngine',
'PriceBucketer',
'HeatmapGenerator',
'CrossExchangeAggregator'
]