Files
NewStock/main/factor/__init__.py
liaozhaorun 4607555eaf feat: 完善 QMT 交易模块文档和配置展示功能
- 优化前端仪表盘界面
- 添加配置文件可视化展示
- 编写 QMT 模块配置文档
- 完善项目规则体系(KiloCode)
2026-01-27 00:52:35 +08:00

84 lines
1.6 KiB
Python

"""
因子模块初始化文件
"""
# from .operator_framework import (
# StockWiseFactor,
# DateWiseFactor
# )
# 导入所有因子类
from .technical_factors import (
SMAFactor,
EMAFactor,
ATRFactor,
OBVFactor,
MACDFactor,
RSI_Factor,
CrossSectionalRankFactor
)
from .money_flow_factors import (
LGFlowFactor,
FlowIntensityFactor,
FlowDivergenceFactor,
FlowStructureFactor,
FlowAccelerationFactor,
CostSqueeze,
HighCostSelling,
LowCostAccumulation,
InstNetAccum,
ChipLockin,
RetailOutInstIn,
AccumAccel
)
from .chip_factors import (
ChipConcentrationFactor,
ChipSkewnessFactor,
FloatingChipFactor,
CostSupportFactor,
WinnerPriceZoneFactor
)
from .sentiment_factors import (
SentimentPanicGreedFactor,
SentimentBreadthFactor,
SentimentReversalFactor,
PriceDeductionFactor,
PriceDeductionRatioFactor,
IndustryMomentumLeadership,
LeadershipPersistenceScore,
DynamicIndustryLeadership
)
from .industry_factors import (
IndustryMomentumFactor,
MarketBreadthFactor,
SectorRotationFactor
)
from .financial_factors import (
CashflowToEVFactor,
BookToPriceFactor,
DebtToEquityFactor,
ProfitMarginFactor,
BMFactor
)
from .special_factors import (
LimitFactor,
VolumeRatioFactor,
BBI_RATIO_FACTOR,
VolatilitySlopeFactor,
PriceVolumeTrendFactor
)
from .momentum_factors import (
ReturnFactor,
VolatilityFactor,
MomentumFactor,
MomentumAcceleration,
TrendEfficiency,
SimpleVolatilityFactor
)