7 Sprints 全部完成: Sprint 0: 基础设施 (DataManager + MariaDB) Sprint 1: 因子引擎 (34因子/12分类) Sprint 2: VectorBT 回测 (5策略+截面) Sprint 3: Optuna 优化 (+Walk-Forward) Sprint 4: ML 模型 (LightGBM+CatBoost) Sprint 5: Qwen 情绪因子 (三源新闻+日期对齐) Sprint 6: Agent 系统 (4Agent+日报.md/.html) 生产加固 (15项): Tushare双源fallback, SSH自动恢复, pool_pre_ping, save_daily先删后插, load_dotenv绝对路径, 日报5d/20d修复, RiskAgent改上证指数, 昨日对比+数据截止, mac_report utf8mb4, CLAUDE-*.md 9条已知Bug, demo全参数化, djapi数据源归一化, indexDatas API修正 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
48 lines
1.3 KiB
Python
48 lines
1.3 KiB
Python
"""
|
|
ATR 平均真实波幅因子。
|
|
"""
|
|
|
|
import pandas as pd
|
|
|
|
from factors.base import BaseFactor
|
|
|
|
|
|
class ATRFactor(BaseFactor):
|
|
"""Average True Range,衡量波动性。"""
|
|
|
|
category = "technical"
|
|
|
|
def __init__(self, period: int = 14):
|
|
self.period = period
|
|
self.name = f"atr_{period}"
|
|
|
|
def calculate(self, df: pd.DataFrame) -> pd.Series:
|
|
high, low, close = df["high"], df["low"], df["close"]
|
|
prev_close = close.shift(1)
|
|
tr = pd.concat([
|
|
(high - low).abs(),
|
|
(high - prev_close).abs(),
|
|
(low - prev_close).abs(),
|
|
], axis=1).max(axis=1)
|
|
return tr.ewm(span=self.period, min_periods=self.period).mean()
|
|
|
|
def get_required_columns(self) -> list[str]:
|
|
return ["high", "low", "close"]
|
|
|
|
|
|
class ATRRatioFactor(BaseFactor):
|
|
"""ATR / close 归一化,便于跨股票比较。"""
|
|
|
|
category = "technical"
|
|
|
|
def __init__(self, period: int = 14):
|
|
self.period = period
|
|
self.name = f"atr_ratio_{period}"
|
|
|
|
def calculate(self, df: pd.DataFrame) -> pd.Series:
|
|
atr = ATRFactor(period=self.period).calculate(df)
|
|
return atr / df["close"].replace(0, float("nan")) * 100
|
|
|
|
def get_required_columns(self) -> list[str]:
|
|
return ["high", "low", "close"]
|