migration: preserve sentiment and pools slice

This commit is contained in:
leefer
2026-07-31 01:41:58 +08:00
parent a4264326bd
commit b3555d2603
19 changed files with 956 additions and 696 deletions
@@ -0,0 +1,19 @@
"""Market sentiment cycle and history feature."""
from .engine import (
COMPONENT_WEIGHTS,
SENTIMENT_ENGINE_VERSION,
apply_sentiment_to_dashboard,
build_sentiment_history,
latest_contiguous_history,
)
from .service import SentimentServiceMixin
__all__ = [
"COMPONENT_WEIGHTS",
"SENTIMENT_ENGINE_VERSION",
"SentimentServiceMixin",
"apply_sentiment_to_dashboard",
"build_sentiment_history",
"latest_contiguous_history",
]