Archive legacy framework and utility modules that are no longer referenced by the active core (datasource/ and rotation/): - framework/ -> archive/framework/ - framework_v2/ -> archive/framework_v2/ - strategies/ -> archive/strategies/ - config/ -> archive/config/ - visualization/ -> archive/visualization/ - scripts/ -> archive/scripts/ - tests/ -> archive/tests/ - run_rotation.py, run_us_rotation.py -> archive/single_files/ - compare_*.py, test_api_dates.py -> archive/single_files/
22 lines
494 B
Python
22 lines
494 B
Python
"""
|
|
通用数据处理
|
|
"""
|
|
|
|
from framework_v2.shared.data.alignment import CrossMarketAligner
|
|
from framework_v2.shared.data.schemas import (
|
|
OHLCVInputSchema,
|
|
AlignedFactorSchema,
|
|
AlignedReturnsSchema,
|
|
AlignmentValidationResult,
|
|
)
|
|
from framework_v2.shared.data.flask_api_fetcher import FlaskAPIFetcher
|
|
|
|
__all__ = [
|
|
'CrossMarketAligner',
|
|
'OHLCVInputSchema',
|
|
'AlignedFactorSchema',
|
|
'AlignedReturnsSchema',
|
|
'AlignmentValidationResult',
|
|
'FlaskAPIFetcher',
|
|
]
|